Skip to content

chore(eslint-config): 4.2.0 #23

chore(eslint-config): 4.2.0

chore(eslint-config): 4.2.0 #23

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- master
push:
branches:
- master
env:
# https://github.com/actions/setup-node/issues/899
SKIP_YARN_COREPACK_CHECK: 1
jobs:
lint:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20"
cache: yarn
- name: Install dependencies
run: |
yarn set version stable
yarn install --immutable
- name: Lint
run: |
yarn prettier --list-different .
yarn lint
yarn spellcheck