Skip to content

Commit 3f24b6b

Browse files
committed
Switch from yarn to pnpm
1 parent e04f89d commit 3f24b6b

File tree

5 files changed

+19149
-15520
lines changed

5 files changed

+19149
-15520
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,17 @@ jobs:
2727

2828
steps:
2929
- uses: actions/checkout@v5
30+
- uses: pnpm/action-setup@v4
31+
with:
32+
version: 9
3033
- uses: actions/setup-node@v6
3134
with:
3235
node-version: 22
3336
registry-url: 'https://registry.npmjs.org'
34-
- run: npm ci
37+
cache: pnpm
38+
- run: pnpm install --frozen-lockfile
39+
- run: npm install -g npm@latest # ensure that the globally installed npm is new enough to support OIDC
3540
- name: Publish to NPM
36-
run: npx release-plan publish --provenance
41+
run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish
3742
env:
3843
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}

.travis.yml

Lines changed: 0 additions & 82 deletions
This file was deleted.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@
109109
},
110110
"volta": {
111111
"node": "18.20.4",
112-
"yarn": "1.22.22"
112+
"yarn": "1.22.22",
113+
"pnpm": "10.24.0"
113114
},
114115
"ember": {
115116
"edition": "octane"

0 commit comments

Comments
 (0)