Skip to content

Commit 964ba5b

Browse files
Merge pull request #3 from mukilane/master
chore: switch to pnpm
2 parents 367274d + 79e93e9 commit 964ba5b

File tree

5 files changed

+7337
-6378
lines changed

5 files changed

+7337
-6378
lines changed

.github/workflows/ci.yml

+11-9
Original file line numberDiff line numberDiff line change
@@ -18,43 +18,45 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
node-version: [12.x, 14.x, 16.x]
21+
node-version: [18.x, 20,x]
2222
os: [ubuntu, windows]
2323

2424
steps:
2525
- uses: actions/checkout@v3
26+
- uses: pnpm/action-setup@v4
2627
- name: Install Node
2728
uses: actions/setup-node@v3
2829
with:
2930
node-version: ${{ matrix.node-version }}
30-
cache: yarn
31+
cache: pnpm
3132

3233
- name: Install Dependencies
33-
run: yarn install --frozen-lockfile
34+
run: pnpm install --frozen-lockfile
3435

3536
- name: Lint
36-
run: yarn lint:js
37+
run: pnpm lint:js
3738

3839
- name: Run Tests
39-
run: yarn test
40+
run: pnpm test
4041

4142
floating:
4243
name: "Floating Dependencies - Node.js ${{ matrix.node-version }}"
4344
runs-on: ubuntu-latest
4445

4546
strategy:
4647
matrix:
47-
node-version: [12.x, 14.x, 16.x]
48+
node-version: [18.x, 20,x]
4849

4950
steps:
5051
- uses: actions/checkout@v3
52+
- uses: pnpm/action-setup@v4
5153
- uses: actions/setup-node@v3
5254
with:
5355
node-version: ${{ matrix.node-version }}
54-
cache: yarn
56+
cache: pnpm
5557

5658
- name: Install Dependencies
57-
run: yarn install --no-lockfile
59+
run: pnpm install --no-lockfile
5860

5961
- name: Run Tests
60-
run: yarn test
62+
run: pnpm test

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Pinning solely to versioned releases should be preferred.
8181

8282
To run tests:
8383

84-
`npm test`
84+
`pnpm test`
8585

8686
### LICENSE
8787

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,6 @@
6060
"ember-addon": {
6161
"configPath": "tests/dummy/config"
6262
},
63-
"readmeFile": "README.md"
63+
"readmeFile": "README.md",
64+
"packageManager": "pnpm@9.11.0"
6465
}

0 commit comments

Comments
 (0)