Update dependency eslint-plugin-jest to v28 [skip netlify] #4265
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v4 | |
- name: Setup Node env 🏗 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'yarn' | |
- name: Install dependencies 👨🏻💻 | |
run: yarn install --frozen-lockfile | |
- name: Run linter 👀 | |
run: yarn lint:check | |
- name: Run tests 🧪 | |
run: yarn test | |
- name: Run build 🔨 | |
run: yarn build |