distribution files check
Some checks failed
Distribution check / Generated files check (push) Failing after -2m6s
NPM Audit Check / Check NPM audit (push) Successful in -2m10s
Unit tests / Unit tests (latest) (push) Successful in -2m2s
Unit tests / Unit tests (lts/*) (push) Has been cancelled
Unit tests / Unit tests (lts/hydrogen) (push) Successful in -2m1s
Some checks failed
Distribution check / Generated files check (push) Failing after -2m6s
NPM Audit Check / Check NPM audit (push) Successful in -2m10s
Unit tests / Unit tests (latest) (push) Successful in -2m2s
Unit tests / Unit tests (lts/*) (push) Has been cancelled
Unit tests / Unit tests (lts/hydrogen) (push) Successful in -2m1s
This commit is contained in:
34
.gitea/workflows/distribution-check.yml
Normal file
34
.gitea/workflows/distribution-check.yml
Normal file
@@ -0,0 +1,34 @@
|
||||
name: Distribution check
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
|
||||
check:
|
||||
name: Generated files check
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 15
|
||||
strategy:
|
||||
fail-fast: true
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
steps:
|
||||
- name: checkout repository
|
||||
uses: https://github.com/actions/checkout@v4
|
||||
|
||||
- name: set up node
|
||||
uses: https://github.com/actions/setup-node@v4
|
||||
with:
|
||||
node-version: lts/*
|
||||
check-latest: true
|
||||
|
||||
- name: Build
|
||||
run: npm run build
|
||||
|
||||
- name: check for diff
|
||||
run: git update-index --refresh
|
||||
Reference in New Issue
Block a user