Skip to content

Commit 38aeba4

Browse files
committed
swap to pnpm
1 parent 8e8886c commit 38aeba4

File tree

3 files changed

+8379
-7752
lines changed

3 files changed

+8379
-7752
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,18 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v1
16+
- uses: pnpm/action-setup@v2
17+
with:
18+
version: 8
1619
- uses: actions/setup-node@v1
1720
with:
1821
node-version: '16.x'
1922
- name: Install
20-
run: yarn install
23+
run: pnpm install
2124
- name: Linting
22-
run: yarn lint:js
25+
run: pnpm lint:js
2326
- name: Test
24-
run: yarn test --coverage
27+
run: pnpm run test --coverage
2528

2629
integration_tests:
2730
name: Integration Tests
@@ -33,12 +36,15 @@ jobs:
3336

3437
steps:
3538
- uses: actions/checkout@v1
39+
- uses: pnpm/action-setup@v2
40+
with:
41+
version: 8
3642
- uses: actions/setup-node@v1
3743
with:
3844
node-version: '16.x'
3945
- name: Install
40-
run: yarn install
46+
run: pnpm install
4147
- name: Test
4248
env:
4349
EMBER_VERSION: ${{ matrix.ember_version }}
44-
run: yarn test:integration
50+
run: pnpm run test:integration

0 commit comments

Comments
 (0)