From 158cd94c3f1fe379554f9dd5dc5991b3408b09b9 Mon Sep 17 00:00:00 2001 From: Kacper Cyranowski Date: Wed, 19 Jun 2024 08:41:39 +0200 Subject: [PATCH] fix: ci --- .github/actions/setup_test_project/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup_test_project/action.yml b/.github/actions/setup_test_project/action.yml index acc4f925..f36893ed 100644 --- a/.github/actions/setup_test_project/action.yml +++ b/.github/actions/setup_test_project/action.yml @@ -60,7 +60,7 @@ runs: - name: Install dependencies if: steps.yarn-cache.outputs.cache-hit != 'true' run: | - cd test_project && rm yarn.lock + cd test_project && rm -f yarn.lock cd touch yarn.lock && yarn install cd .. && yarn install shell: bash