From c97bf2f7c42f56bb2367f215f3a2e76a4ba61a31 Mon Sep 17 00:00:00 2001 From: Dale French Date: Fri, 22 Mar 2024 12:28:18 +0100 Subject: [PATCH] Enable corepack on CI (#76) --- .github/workflows/publish.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 289cc12..42bb582 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,6 +16,16 @@ jobs: node-version: '20.8.0' cache: 'yarn' + # Enable Corepack + - name: Enable Corepack + run: corepack enable + + # Verify Corepack and Yarn versions + - name: Verify Corepack and Yarn versions + run: | + corepack --version + yarn --version + - run: yarn install - name: Create Release Pull Request or Publish id: changesets