From 336bf08dc2eb18932666cb01cfc73116f9b68f6f Mon Sep 17 00:00:00 2001 From: JounQin Date: Thu, 7 Dec 2023 21:29:40 +0800 Subject: [PATCH] ci: enable SKIP_YARN_COREPACK_CHECK for workaround --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cac8cfac9..a58b80d65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: - 20 os: - macos-latest - # - windows-latest + - windows-latest - ubuntu-latest runs-on: ${{ matrix.os }} steps: @@ -29,9 +29,14 @@ jobs: with: node-version: ${{ matrix.node }} cache: yarn + env: + # https://github.com/actions/setup-node/issues/531#issuecomment-1819151412 + SKIP_YARN_COREPACK_CHECK: 1 - name: Install Dependencies run: yarn --immutable + env: + SKIP_YARN_COREPACK_CHECK: 1 - name: Build, Lint and Test run: yarn run-s build lint test typecov