build(deps-dev): bump the dev-deps group across 1 directory with 6 updates #371
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: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Lint (ESLint) | |
| run: npm run lint | |
| - name: Format check (Prettier) | |
| run: npm run format:check | |
| # The hand-maintained discovery files drift silently otherwise: SKILL.md's | |
| # page count / category list / MCP revision against the repo, and both | |
| # files' pinned integrity (sha256 digest, detached JWS). Neither needs a | |
| # private key — they only verify what's committed. | |
| - name: Agent Skill drift check | |
| run: npm run check:skill | |
| - name: ARD catalog signature check | |
| run: npm run check:ard | |
| - name: Type-check (Astro) | |
| run: npx astro check | |
| - name: Build | |
| run: npm run build | |
| env: | |
| NODE_ENV: production | |
| - name: Upload build artefact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: dist | |
| path: dist | |
| retention-days: 7 |