This repository has been archived by the owner on Jan 16, 2025. It is now read-only.
build(deps-dev): Bump eslint-plugin-jest from 27.4.3 to 27.6.0 #191
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "yarn" | |
- name: Install Yarn v3 | |
run: | | |
corepack enable | |
corepack prepare [email protected] --activate | |
- run: yarn | |
- run: yarn build | |
- run: yarn lint |