From 0677d89fff6c72fc0147b1934993bc26762a5113 Mon Sep 17 00:00:00 2001 From: Yuichiro Yamashita Date: Thu, 27 Apr 2023 06:02:22 +0900 Subject: [PATCH] chore: fix CI on Node 20 (#8528) --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7979ec1bd7..91cd471aa2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,8 @@ jobs: steps: - uses: actions/checkout@v3 - uses: pnpm/action-setup@v2.2.4 + with: + version: ${{ matrix.node-version == 14 && 7 || 8 }} - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }}