Skip to content

Commit

Permalink
fix: allow mutable yarn install on PR for dependabot purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
karolsojko committed Oct 17, 2023
1 parent 5b06ea9 commit cd830cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
node-version-file: '.nvmrc'

- name: Install
run: yarn install --immutable
run: yarn install

- name: Build
run: yarn build
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit cd830cd

Please sign in to comment.