Bump eslint from 9.13.0 to 9.32.0 #371
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: push | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@v2 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: '20.x' | |
| - name: Install Dependencies | |
| run: yarn ci:install | |
| - name: Run linter | |
| run: yarn run ci:eslint | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@v2 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: '20.x' | |
| - name: Install Dependencies | |
| run: yarn run ci:install | |
| - name: Compile Typescript | |
| run: yarn run ci:tsc |