From c55379ba2edcd79fe5c83af9da1614a9a4f51acb Mon Sep 17 00:00:00 2001 From: Cong-Cong Date: Fri, 19 Apr 2024 11:24:38 +0800 Subject: [PATCH] fix: corepack proxy --- .github/actions/build-rspack/action.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/build-rspack/action.yaml b/.github/actions/build-rspack/action.yaml index 7fee55b..7460b61 100644 --- a/.github/actions/build-rspack/action.yaml +++ b/.github/actions/build-rspack/action.yaml @@ -27,7 +27,11 @@ runs: with: node-version: 18 - shell: bash - run: corepack enable + run: | + npm install -g corepack@latest + corepack --version + corepack enable + - shell: bash run: pnpm --version - name: Checkout Rspack repo