From 3b4618ab93a512aa1ed565743c26dfad19113685 Mon Sep 17 00:00:00 2001 From: Kacper Cyranowski Date: Wed, 19 Jun 2024 07:42:58 +0200 Subject: [PATCH] fix: change test_project installation --- .github/actions/setup_test_project/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup_test_project/action.yml b/.github/actions/setup_test_project/action.yml index cb8a5fe9..efb584c6 100644 --- a/.github/actions/setup_test_project/action.yml +++ b/.github/actions/setup_test_project/action.yml @@ -60,6 +60,6 @@ runs: - name: Install dependencies if: steps.yarn-cache.outputs.cache-hit != 'true' run: | - yarn install --cwd test_project - yarn install + cd test_project && rm yarn.lock && yarn install + cd .. && yarn install shell: bash