This repository was archived by the owner on May 31, 2026. It is now read-only.
Initial ship: human override readiness console #1
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: | |
| branches: [main] | |
| jobs: | |
| verify: | |
| name: verify (node ${{ matrix.node-version }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: ["20", "22"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - run: npm install | |
| - run: npm run lint | |
| - run: npm run typecheck | |
| - run: npm run coverage | |
| - run: npm run build | |
| - run: npm run demo | |
| - run: npm run smoke | |
| - run: npm run prerender | |
| - run: npm audit --audit-level=high |