From c7f1d00650604f831cf9fbcfda83ee81bee2a93b Mon Sep 17 00:00:00 2001 From: Marcel Gerber Date: Sun, 22 Dec 2024 20:34:09 +0100 Subject: [PATCH] chore(ci): enable corepack --- .github/actions/setup-node-yarn-deps/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/setup-node-yarn-deps/action.yml b/.github/actions/setup-node-yarn-deps/action.yml index 53aa96a9059..7a915d19472 100644 --- a/.github/actions/setup-node-yarn-deps/action.yml +++ b/.github/actions/setup-node-yarn-deps/action.yml @@ -3,6 +3,11 @@ description: Runs all the setup steps required to have the proper Node version a runs: using: composite steps: + # Corepack must be enabled _before_ running setup-node, otherwise the caching setup will error + - name: Enable corepack + run: corepack enable + shell: bash + - name: Use Node.js (.nvmrc) uses: actions/setup-node@v4 with: