From fe590f3068bf4b449c1da5fc567c416a7dc1092e Mon Sep 17 00:00:00 2001 From: Mihir Samdarshi Date: Fri, 3 May 2024 14:51:00 -0700 Subject: [PATCH] build(ci): disable yarn caching until actions/setup-node#1027 is resolved --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9137c975..77da3d86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,11 +15,14 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Run corepack enable + run: corepack enable + - name: Setup Node uses: actions/setup-node@v4 with: node-version: 20 - cache: yarn +# cache: yarn - name: Install project run: yarn install --frozen-lockfile @@ -37,11 +40,14 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Run corepack enable + run: corepack enable + - name: Setup Node uses: actions/setup-node@v4 with: node-version: 20 - cache: yarn +# cache: yarn - name: Install project run: yarn install --frozen-lockfile