Bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.13.0 #149
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: "PR checks" | |
on: | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test_lint_and_build: | |
name: "Lint sources and check build artifacts" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
node-version: "20.x" | |
- run: npm install && npm run lint | |
- run: npm run build && git diff --exit-code |