Bump eslint-plugin-jest from 27.2.3 to 27.6.0 #455
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: Check formatting and lint | |
on: | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- name: Install Node.js dependencies | |
run: npm ci | |
- name: Check formatting with Prettier | |
run: npx prettier -cu . | |
- name: Lint with ESLint | |
if: success() || failure() | |
run: npx eslint --max-warnings=0 . |