From d355b7922cb3852147cd6f764f3d04132eb668d4 Mon Sep 17 00:00:00 2001 From: legobt <6wbvkn0j@anonaddy.me> Date: Thu, 7 Sep 2023 04:28:30 +0000 Subject: [PATCH] chore(ci): pin node 20 to 20.5 due to regression in 20.6 --- .github/workflows/nodejs.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 720d10a9f17..b64dadd0272 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -32,7 +32,8 @@ jobs: strategy: matrix: platform: [ubuntu-latest] - node-version: [16.x, 18.x, 20.x] + # TODO: unpin to 20.x once 20.7 has ben released + node-version: [16.x, 18.x, 20.5] env: [GETH=true, PACKAGES=true, INTEGRATION=true] runs-on: ${{ matrix.platform }} @@ -47,9 +48,9 @@ jobs: - run: yarn install - run: test -z "$(git diff)" || (echo 'Did you check in a generated file to source control? Please remove it if so'; false) - + - run: yarn depcheck - + - run: ${{ matrix.env }} yarn ci env: CI: true