Skip to content

Commit b7b9863

Browse files
authored
Merge pull request #197 from ember-codemods/pnpm
swap to pnpm
2 parents 0d4019b + 6c63522 commit b7b9863

File tree

4 files changed

+7350
-5904
lines changed

4 files changed

+7350
-5904
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,12 @@ jobs:
2323

2424
steps:
2525
- uses: actions/checkout@v4
26-
26+
- uses: pnpm/action-setup@v4
2727
- name: Use Node.js ${{ matrix.node-version }}
2828
uses: actions/setup-node@v4
2929
with:
3030
node-version: ${{ matrix.node-version }}
31-
32-
- name: install
33-
run: yarn install
34-
35-
- name: lint
36-
run: yarn lint
37-
38-
- name: test
39-
run: yarn test
40-
env:
41-
CI: true
31+
cache: pnpm
32+
- run: pnpm install --frozen-lockfile
33+
- run: pnpm run lint
34+
- run: pnpm run test

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"prettier": "2.1.1"
3333
},
3434
"engines": {
35-
"node": "10.* || >= 12.*"
36-
}
35+
"node": "18.* || 20.* || >= 22.*"
36+
},
37+
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
3738
}

0 commit comments

Comments
 (0)