From 2fead158ac1a8ae5fdeb6b344ca7fd1b8b5cbd43 Mon Sep 17 00:00:00 2001 From: Sergei Chestakov Date: Mon, 17 Jun 2024 13:57:04 -0400 Subject: [PATCH] Pin eslint version in CI (#93) 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. --- .github/workflows/pull.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index 1521273..d6cb519 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -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