From ed1232d6becaf6df6c39dc12e37a8b4b887a5a56 Mon Sep 17 00:00:00 2001 From: Gilbert Gilb's Date: Sat, 30 Dec 2023 09:31:04 +0100 Subject: [PATCH] fix(ci): fix corepack setup fail CI was failing, probably because of a change in the setup-node action: https://github.com/gilbsgilbs/babel-plugin-i18next-extract/actions/runs/7363053375/job/20042120587?pr=264 See also https://github.com/actions/setup-node/issues/480#issuecomment-1820622085 --- .github/workflows/main.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 009cd4f..0174df8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,6 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ env.MAIN_NODE_VERSION }} - cache: 'yarn' - run: corepack enable - run: yarn install - run: yarn run lint @@ -34,7 +33,6 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - cache: 'yarn' - run: corepack enable - name: Install dependencies run: yarn install