@@ -22,17 +22,20 @@ jobs:
2222
2323 steps :
2424 - uses : actions/checkout@v3
25+ - uses : pnpm/action-setup@v4
26+ with :
27+ version : 9
2528 - name : Install Node
2629 uses : actions/setup-node@v3
2730 with :
2831 node-version : 18
29- cache : yarn
32+ cache : pnpm
3033 - name : Install Dependencies
31- run : yarn install --frozen-lockfile
34+ run : pnpm install --frozen-lockfile
3235 - name : Lint
33- run : yarn lint
36+ run : pnpm lint
3437 - name : Run Tests
35- run : yarn test:ember
38+ run : pnpm test:ember
3639
3740 floating :
3841 name : " Floating Dependencies"
@@ -41,14 +44,17 @@ jobs:
4144
4245 steps :
4346 - uses : actions/checkout@v3
47+ - uses : pnpm/action-setup@v4
48+ with :
49+ version : 9
4450 - uses : actions/setup-node@v3
4551 with :
4652 node-version : 18
47- cache : yarn
53+ cache : pnpm
4854 - name : Install Dependencies
49- run : yarn install --no-lockfile
55+ run : pnpm install --no-lockfile
5056 - name : Run Tests
51- run : yarn test:ember
57+ run : pnpm test:ember
5258
5359 try-scenarios :
5460 name : ${{ matrix.try-scenario }}
@@ -70,12 +76,15 @@ jobs:
7076
7177 steps :
7278 - uses : actions/checkout@v3
79+ - uses : pnpm/action-setup@v4
80+ with :
81+ version : 9
7382 - name : Install Node
7483 uses : actions/setup-node@v3
7584 with :
7685 node-version : 18
77- cache : yarn
86+ cache : pnpm
7887 - name : Install Dependencies
79- run : yarn install --frozen-lockfile
88+ run : pnpm install --frozen-lockfile
8089 - name : Run Tests
8190 run : ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
0 commit comments