From e480306db0964dae1b96cd018ce9216f2eaf9698 Mon Sep 17 00:00:00 2001 From: Dale French Date: Fri, 22 Mar 2024 11:29:23 +0100 Subject: [PATCH] Enable corepack on CI --- .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