Skip to content

Commit

Permalink
fix(ci): update yarn install command
Browse files Browse the repository at this point in the history
  • Loading branch information
aklkv committed Nov 2, 2023
1 parent 82713a1 commit 4b8132d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Install Dependencies
# Absurdly, yarn always fails on the first try here.
# https://github.com/yarnpkg/yarn/issues/2629
run: until yarn install --no-lockfile; do echo "Retrying yarn"; done
run: until yarn install --immutable --immutable-cache --check-cache; do echo "Retrying yarn"; done

- name: Run Tests
run: yarn test:ember
Expand Down

0 comments on commit 4b8132d

Please sign in to comment.