Bump @typescript-eslint/parser from 4.33.0 to 8.18.2 #3514
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: Lint | |
| on: | |
| push: | |
| branches-ignore: | |
| - gh-pages | |
| paths: | |
| - '**.ts' | |
| - package.json | |
| - package-lock.json | |
| - tsconfig.json | |
| - .eslintrc.js | |
| - .github/workflows/lint.yml | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '14.x' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Analyze the coding style | |
| run: npm run lint:ci |