Skip to content

Commit e556dd4

Browse files
authored
Merge pull request #401 from ember-codemods/pnpm
swap to pnpm
2 parents 01f7a45 + 6aca986 commit e556dd4

File tree

4 files changed

+8383
-7752
lines changed

4 files changed

+8383
-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

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"devDependencies": {
4040
"@types/chalk": "^2.2.0",
4141
"@types/common-tags": "^1.8.0",
42+
"@types/node": "^20.11.5",
4243
"@typescript-eslint/eslint-plugin": "^2.34.0",
4344
"@typescript-eslint/parser": "^2.34.0",
4445
"babel-plugin-htmlbars-inline-precompile": "^3.0.1",

0 commit comments

Comments
 (0)