From cd830cdf258e95ec81faee0f74c418d727205326 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Tue, 17 Oct 2023 10:47:32 +0200 Subject: [PATCH] fix: allow mutable yarn install on PR for dependabot purposes --- .github/workflows/pr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 333f49a1e..c1af2dbe3 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -26,7 +26,7 @@ jobs: node-version-file: '.nvmrc' - name: Install - run: yarn install --immutable + run: yarn install - name: Build run: yarn build @@ -54,7 +54,7 @@ jobs: node-version-file: '.nvmrc' - name: Install - run: yarn install --immutable + run: yarn install - name: Build if: steps.cache-build.outputs.cache-hit != 'true' @@ -86,7 +86,7 @@ jobs: node-version-file: '.nvmrc' - name: Install - run: yarn install --immutable + run: yarn install - name: Build if: steps.cache-build.outputs.cache-hit != 'true'