Bump @typescript-eslint/eslint-plugin from 8.8.1 to 8.12.0 #50
Workflow file for this run
This file contains 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 for PRs' | |
on: | |
pull_request: | |
branches: [devel] | |
jobs: | |
pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
- name: 'Install modules' | |
run: | | |
npm install | |
# fail if npm install had to change package-lock.json | |
git diff --exit-code package-lock.json | |
- name: 'Check the code builds & lints' | |
run: npm run verify |