From d028d2860689fc895b89db443c866fab808bce62 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 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9137c975..8c037503 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