Bump eslint from 8.56.0 to 8.57.0 #603
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: CS | |
on: | |
push: | |
branches: | |
- master | |
- 'feature/**' | |
- 'release/**' | |
- 'fix/**' | |
paths-ignore: | |
- "README.md" | |
# The branches below must be a subset of the branches above | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- "README.md" | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
name: Code linting | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node 14.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '14.x' | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Code linting | |
run: npm run lint |