Skip to content

Commit 0c94e69

Browse files
committed
Convert to pnpm
1 parent 07cabde commit 0c94e69

3 files changed

Lines changed: 20885 additions & 18220 deletions

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff 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
@@ -36,9 +36,9 @@ jobs:
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"
@@ -50,9 +50,9 @@ jobs:
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 }}"
@@ -77,8 +77,8 @@ jobs:
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

0 commit comments

Comments
 (0)