check distribution files
Some checks failed
Distribution check / Generated files check (push) Failing after -1m20s
NPM Audit Check / Check NPM audit (push) Successful in -2m10s
Unit tests / Unit tests (lts/*) (push) Has been cancelled
Unit tests / Unit tests (lts/hydrogen) (push) Has been cancelled
Unit tests / Unit tests (latest) (push) Has started running
Some checks failed
Distribution check / Generated files check (push) Failing after -1m20s
NPM Audit Check / Check NPM audit (push) Successful in -2m10s
Unit tests / Unit tests (lts/*) (push) Has been cancelled
Unit tests / Unit tests (lts/hydrogen) (push) Has been cancelled
Unit tests / Unit tests (latest) (push) Has started running
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: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: set up node
|
||||||
|
uses: 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