From ddff5e96ae76079229a4a5731b0dd39668d34b15 Mon Sep 17 00:00:00 2001 From: Joe Hildebrand Date: Thu, 6 Feb 2025 11:13:05 -0700 Subject: [PATCH] Deal with broken corepack --- .github/workflows/node.js.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 2e6e692..eef3f3e 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -22,7 +22,10 @@ jobs: - uses: actions/checkout@v4 with: submodules: true - - run: corepack enable + - name: install corepack + run: | + npm install -g corepack@latest + corepack enable - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: