From 88d109fea30f6e92a17bbc9c34105ab9aa96bd0b Mon Sep 17 00:00:00 2001 From: Greg Lucas Date: Sun, 19 Feb 2023 13:26:40 -0700 Subject: [PATCH] CI: Pin reviewdog eslint to use node 18.13 The reviewdog action is not compatible with npm v9 yet, and node 18.14+ comes with npm v9+. --- .github/workflows/reviewdog.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index 659eedb8d383..a0fbc39990a6 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -45,6 +45,11 @@ jobs: steps: - uses: actions/checkout@v3 + # pin to node 18.13 until npm v9 is supported by reviewdog eslint + - uses: actions/setup-node@v3 + with: + node-version: '18.13' + - name: eslint uses: reviewdog/action-eslint@v1 with: