fix: force model reload before retry after runtime exit #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Syntax check (bench runtime) | |
| run: node --check bench.js | |
| - name: Syntax check (report scripts) | |
| run: | | |
| node --check scripts/generate_launch_draft.mjs | |
| node --check scripts/generate_8k_validation_report.mjs | |
| node --check scripts/generate_8k_batch_report.mjs | |
| - name: Required file smoke check | |
| run: | | |
| test -f bench.html | |
| test -f bench.js | |
| test -f README.md | |
| test -f docs/RELEASE_NOTES_v1.0.0.md | |
| test -f docs/DEVICE_MODEL_GUIDE_2026-03-30.md |