From 29e0b8dbbd06ba6068af3484d466a57206e81c3d Mon Sep 17 00:00:00 2001 From: Sagar Khalasi Date: Tue, 13 Aug 2024 17:43:56 +0530 Subject: [PATCH] Uncommeted yarn cache --- .github/workflows/ci-test-limited-with-count.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-test-limited-with-count.yml b/.github/workflows/ci-test-limited-with-count.yml index 5cbd9f9aef9..8790ca23188 100644 --- a/.github/workflows/ci-test-limited-with-count.yml +++ b/.github/workflows/ci-test-limited-with-count.yml @@ -209,14 +209,14 @@ jobs: # actions/setup-node@v4 doesn’t work properly with Yarn 3 # when the project lives in a subdirectory: https://github.com/actions/setup-node/issues/488 # Restoring the cache manually instead - # - name: Restore Yarn cache - # if: steps.run_result.outputs.run_result != 'success' - # uses: actions/cache@v4 - # with: - # path: | - # app/client/.yarn/cache - # app/client/node_modules/.cache/webpack/ - # key: v1-yarn3-${{ hashFiles('app/client/yarn.lock') }} + - name: Restore Yarn cache + if: steps.run_result.outputs.run_result != 'success' + uses: actions/cache@v4 + with: + path: | + app/client/.yarn/cache + app/client/node_modules/.cache/webpack/ + key: v1-yarn3-${{ hashFiles('app/client/yarn.lock') }} # Install all the dependencies - name: Install dependencies