File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 54
54
- name : Install Dependencies
55
55
# Absurdly, yarn always fails on the first try here.
56
56
# 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
58
58
59
59
- name : Run Tests
60
60
run : yarn test:ember
@@ -86,11 +86,11 @@ jobs:
86
86
- name : Install Node
87
87
uses : actions/setup-node@v3
88
88
with :
89
- node-version : 14 .x
89
+ node-version : 18 .x
90
90
cache : yarn
91
91
92
92
- 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
94
94
95
95
- name : Run Tests
96
96
run : ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
You can’t perform that action at this time.
0 commit comments