From 5627a10372dd03ec09a42d6499b29c5be5f9c6df Mon Sep 17 00:00:00 2001 From: yyyyaaa Date: Tue, 11 Jun 2024 19:40:51 +0700 Subject: [PATCH] ci: try disable yarn cache due to cache paths not found error --- .github/workflows/run-tests.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 8335e9d35..8e7631ff5 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -14,10 +14,12 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '20.x' + node-version: 20 - name: Set up Yarn uses: threeal/setup-yarn-action@v2.0.0 + with: + cache: false - name: Install Dependencies run: npm install -g create-cosmos-app