chore(deps): bump the npm-minor-and-patch group across 1 directory with 6 updates #1097
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] | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-check-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Security audit (npm) | |
| run: npm audit --audit-level=high | |
| - name: Lint + typecheck | |
| run: npm run check | |
| - name: Tests | |
| run: npm run test:models && npm run test:context && npm run test:security | |
| - name: Build | |
| run: npm run build | |
| - name: Validate manifest | |
| run: npm run validate |