We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb52bcf commit efbd7b3Copy full SHA for efbd7b3
1 file changed
.github/workflows/ci.yml
@@ -17,11 +17,19 @@ jobs:
17
with:
18
node-version: '20'
19
20
- - name: Syntax check
+ - name: Syntax check (bench runtime)
21
run: node --check bench.js
22
23
- - name: Run tests
24
- run: npm run test
+ - name: Syntax check (report scripts)
+ run: |
25
+ node --check scripts/generate_launch_draft.mjs
26
+ node --check scripts/generate_8k_validation_report.mjs
27
+ node --check scripts/generate_8k_batch_report.mjs
28
- - name: Build OSS packages
- run: npm run oss:pack
29
+ - name: Required file smoke check
30
31
+ test -f bench.html
32
+ test -f bench.js
33
+ test -f README.md
34
+ test -f docs/RELEASE_NOTES_v1.0.0.md
35
+ test -f docs/DEVICE_MODEL_GUIDE_2026-03-30.md
0 commit comments