We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8db70c9 commit 4833befCopy full SHA for 4833bef
1 file changed
.github/workflows/release.yml
@@ -21,19 +21,20 @@ jobs:
21
- name: Checkout
22
uses: actions/checkout@v5
23
24
+ - name: Setup pnpm
25
+ uses: pnpm/action-setup@v2
26
+
27
- name: Setup Node.js
28
uses: actions/setup-node@v5
29
with:
30
node-version: 22.19.0
31
32
# Update npm to the latest version to enable OIDC
33
# Use corepack to install pnpm
- - name: Setup Package Managers
34
+ - name: Update npm CLI
35
run: |
36
npm install -g npm@latest
37
npm --version
- npm install -g corepack@latest --force
- corepack enable
38
39
- name: Install Dependencies
40
run: pnpm install
0 commit comments