deps: bump @typescript-eslint/eslint-plugin from 8.60.0 to 8.64.0 #101
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-and-test: | |
| name: Build, Lint & Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 # v6.0.2 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 # v6.4.0 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Typecheck | |
| run: npm run typecheck | |
| - name: Lint | |
| run: npm run lint | |
| - name: Test | |
| run: npm test | |
| - name: Build | |
| run: npm run build | |
| - name: Verify dist/ is up-to-date | |
| run: | | |
| if [ "$(git diff --name-only dist/)" != "" ]; then | |
| echo "::error::dist/ is out of date. Run 'npm run build' and commit the result." | |
| git diff --stat dist/ | |
| exit 1 | |
| fi | |
| - name: Security audit | |
| run: npm audit --audit-level=high --omit=dev |