diff --git a/.github/actions/setup_test_project/action.yml b/.github/actions/setup_test_project/action.yml index cb8a5fe9..a437cab6 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 && yarn install + cd .. && yarn install shell: bash