From fa0cb662ec6402d0ebe8da33ccdb15eab665bd5d Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Mon, 1 Dec 2025 17:52:06 +0200 Subject: [PATCH] chore(ci): install and enable corepack in publish workflow (#90) Added step to install and enable corepack in the workflow. --- .github/workflows/publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a9de24e..3c4446b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -42,6 +42,10 @@ jobs: registry-url: 'https://registry.npmjs.org' scope: '@ivuorinen' + - name: Install and enable corepack + shell: sh + run: npm install -g corepack@latest --force && corepack enable + - name: Cache Node Modules uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 id: cache