Skip to content

Commit

Permalink
Pin eslint version in CI (#93)
Browse files Browse the repository at this point in the history
CI is currently red in this repo if you try to open a PR or commit to main because we implicitly download the latest version of eslint (major version 9) which has since been deprecated and no longer supports the eslint config file format we still use (bc this repo is old).

If we pin the version to the latest major version 8, it finally works again so we can land PRs again.
  • Loading branch information
sergeichestakov authored Jun 17, 2024
1 parent 9b3a520 commit 2fead15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Install all packages
run: pnpm install
- name: Run eslint
run: pnpx eslint ./ --max-warnings 0
run: pnpx eslint@8.57.0 ./ --max-warnings 0

build:
name: Build packages
Expand Down

0 comments on commit 2fead15

Please sign in to comment.