chore: use esconfig with native eslint v9 #368
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 | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# waiting on: https://github.com/actions/setup-node/issues/531 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
- name: run eslint | |
run: | | |
yarn install --immutable | |
yarn build | |
yarn typecheck | |
yarn lint:check | |
yarn format:check | |
yarn knip | |
yarn sync |