Bump @typescript-eslint/eslint-plugin from 5.59.8 to 6.20.0 #159
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: Lint Node.js | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- "src-tauri/**" | |
- "README.md" | |
concurrency: | |
group: ci-js-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js LTS v16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: yarn | |
- name: Run lint step | |
run: yarn lint |