Skip to content

Commit

Permalink
enable immutable installs in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyar committed Sep 6, 2022
1 parent 2897ad2 commit d629670
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ jobs:
cache: "yarn"

- name: Install deps
run: yarn
# enabeling updating the lock file for a bug in yarn berry likely related to installing github
run: YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn

- name: Lint
run: yarn lint

- name: pretty
run: yarn pretty

test:
runs-on: ubuntu-20.04
steps:
Expand All @@ -34,7 +36,8 @@ jobs:
cache: "yarn"

- name: Install deps
run: yarn
# enabeling updating the lock file for a bug in yarn berry likely related to installing github
run: YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn

- name: Prepare local
run: yarn prepare:local
Expand Down

0 comments on commit d629670

Please sign in to comment.