Site navigation: sticky nav across all pages, recipes on-site, npm badge #6
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: | |
| verify: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [22, 24] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: npm | |
| - run: npm ci | |
| - name: Tests (derivation, round-trip, differential oracles, codegen parity) | |
| run: npm test | |
| - name: Zero-allocation audit | |
| run: npm run alloc | |
| - name: Type definitions check | |
| run: npx --yes --package typescript@5 tsc --noEmit --strict types.d.ts codegen.d.ts | |
| - name: Precision bounds table | |
| run: npm run precision >> "$GITHUB_STEP_SUMMARY" |