We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aab3bd commit 9e32f2dCopy full SHA for 9e32f2d
.github/workflows/release.yml
@@ -21,21 +21,20 @@ jobs:
21
- name: Checkout
22
uses: actions/checkout@v4
23
24
- # Update npm to the latest version to enable OIDC
+ - name: Setup Node.js
25
+ uses: actions/setup-node@v4
26
+ with:
27
+ node-version: 22
28
+
29
# Use corepack to install pnpm
30
+ # Update npm to the latest version to enable OIDC
31
- name: Setup Package Managers
32
run: |
33
npm install -g npm@latest
34
npm --version
35
npm install -g corepack@latest --force
36
corepack enable
37
- - name: Setup Node.js
- uses: actions/setup-node@v4
- with:
- node-version: 22
- cache: "pnpm"
38
-
39
- name: Install Dependencies
40
run: pnpm install
41
0 commit comments