From 48bf0fc5bf8ea9eff198d4d6a1be11015263148a Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Mon, 1 Dec 2025 15:58:46 +0200 Subject: [PATCH] chore(ci): install and enable corepack in workflow (#88) Added step to install and enable corepack in workflow. --- .github/workflows/update-browserslist.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/update-browserslist.yaml b/.github/workflows/update-browserslist.yaml index c59b795..073a11d 100644 --- a/.github/workflows/update-browserslist.yaml +++ b/.github/workflows/update-browserslist.yaml @@ -28,6 +28,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: Configure git run: | git config user.name "fiximus"