fix: bump @eslint/js from 9.29.0 to 9.30.0 #186
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: pull_request | |
| env: | |
| HUSKY: 0 | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| strategy: | |
| matrix: | |
| version: [18, 20, 22] | |
| name: 🧹 Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.version }} | |
| cache: npm | |
| - run: npm ci --no-audit --no-fund --prefer-offline | |
| - run: npx --no-install eslint src | |
| - name: Test ESLint config against test files (expects failures) | |
| run: | | |
| set +e # Don't exit on failure | |
| npx eslint test-files/ --format=compact | |
| exit_code=$? | |
| echo "ESLint exit code: $exit_code" | |
| if [ $exit_code -eq 0 ]; then | |
| echo "❌ Test files should have ESLint violations but none were found" | |
| exit 1 | |
| else | |
| echo "✅ Test files correctly show ESLint violations" | |
| exit 0 | |
| fi |