Skip to content

Commit 91b1121

Browse files
committed
fix(ci): update yarn install command
1 parent 82713a1 commit 91b1121

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Install Dependencies
5555
# Absurdly, yarn always fails on the first try here.
5656
# https://github.com/yarnpkg/yarn/issues/2629
57-
run: until yarn install --no-lockfile; do echo "Retrying yarn"; done
57+
run: until yarn install --immutable --immutable-cache --check-cache; do echo "Retrying yarn"; done
5858

5959
- name: Run Tests
6060
run: yarn test:ember
@@ -86,11 +86,11 @@ jobs:
8686
- name: Install Node
8787
uses: actions/setup-node@v3
8888
with:
89-
node-version: 14.x
89+
node-version: 18.x
9090
cache: yarn
9191

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

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

0 commit comments

Comments
 (0)