From 8a6e540afb9a40aec6df61c1d72708d32ee9ab04 Mon Sep 17 00:00:00 2001 From: Rob Pinciuc Date: Mon, 11 Nov 2024 20:02:02 -0800 Subject: [PATCH] chore: add corepack enable command to chromatic to account for yarn update --- .github/workflows/chromatic.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index e5cdfdf..aec0546 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -14,7 +14,9 @@ jobs: with: node-version: '>=20.18.0' - name: Install dependencies - run: yarn install --frozen-lockfile + run: | + corepack enable + yarn install --frozen-lockfile - name: Publish to Chromatic uses: chromaui/action@v1 with: