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 91b1121
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .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 Expand Up @@ -86,11 +86,11 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 18.x
cache: yarn

- name: Install Dependencies
run: until yarn install --frozen-lockfile; do echo "Retrying yarn"; done
run: until yarn install --immutable --immutable-cache --check-cache; do echo "Retrying yarn"; done

- name: Run Tests
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
Expand Down

0 comments on commit 91b1121

Please sign in to comment.