Ship the MIT license with the legacy Action entrypoint #121
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm ci | |
| - name: Lint (biome) | |
| run: npm run lint | |
| - name: Build, test & coverage gate | |
| run: npm run test:coverage | |
| - name: Consumer-facing type packaging check (typecheck:consumer) | |
| run: npm run typecheck:consumer -w harness-score | |
| - name: Published types match runtime exports (attw) | |
| run: npm run check:types -w harness-score | |
| - name: Self-audit — this repo must stay L4 | |
| run: node packages/cli/dist/cli.js . --min-level 4 | |
| - name: Plugin path hints stay in sync with harness registry | |
| run: npm run plugins:sync-check | |
| - name: Docs build | |
| run: npm run docs:build |