File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ jobs:
2121 - uses : actions/setup-node@v4
2222 with :
2323 node-version : 18
24- cache : ' yarn '
25- - run : yarn install --frozen-lockfile
26- - run : yarn lint
27- - run : yarn test:ember
24+ cache : ' pnpm '
25+ - run : pnpm install
26+ - run : pnpm lint
27+ - run : pnpm test:ember
2828
2929 test-node :
3030 name : Node Tests
3636 - uses : actions/setup-node@v4
3737 with :
3838 node-version : 18
39- cache : ' yarn '
40- - run : yarn install --frozen-lockfile
41- - run : yarn test:node
39+ cache : ' pnpm '
40+ - run : pnpm install
41+ - run : pnpm test:node
4242
4343 floating-dependencies :
4444 name : " Floating Dependencies"
5050 - uses : actions/setup-node@v4
5151 with :
5252 node-version : 18
53- cache : ' yarn '
54- - run : yarn install --no-lockfile
55- - run : yarn test:ember
53+ cache : ' pnpm '
54+ - run : pnpm install
55+ - run : pnpm test:ember
5656
5757 try-scenarios :
5858 name : " Try: ${{ matrix.ember-try-scenario }}"
7777 - uses : actions/setup-node@v4
7878 with :
7979 node-version : 18
80- cache : ' yarn '
80+ cache : ' pnpm '
8181 - name : install dependencies
82- run : yarn install --frozen-lockfile
82+ run : pnpm install
8383 - name : test
8484 run : node_modules/.bin/ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup
You can’t perform that action at this time.
0 commit comments