feat(codegen): emit bc's de-interpreted STATIC straight-line code (bc 0.2.5, bc#75) #115
Workflow file for this run
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: | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| # Node 22 to match the local dev floor and the other workflows | |
| # (release-discipline needs `node:fs` globSync, Node 22+). | |
| node-version: 22 | |
| cache: npm | |
| - name: Install | |
| run: npm ci --ignore-scripts | |
| - name: Audit | |
| run: npm audit --audit-level=moderate | |
| - name: Verify npm signatures | |
| run: npm audit signatures | |
| - name: Lint | |
| run: npm run lint --if-present | |
| - name: Build | |
| run: npm run build | |
| - name: Test | |
| run: npm run test:ci | |
| - name: Verify package contents | |
| run: npm pack --dry-run |