We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ca0a8c commit 2bf1587Copy full SHA for 2bf1587
1 file changed
.github/workflows/test.yml
@@ -30,13 +30,15 @@ jobs:
30
- name: Checkout code
31
uses: actions/checkout@v4
32
33
+ - name: Setup pnpm
34
+ uses: pnpm/action-setup@v4
35
+
36
- name: Setup Node.js
37
uses: actions/setup-node@v4
38
with:
- node-version: '24'
-
- - name: Setup PNPM
39
- uses: pnpm/action-setup@v4
+ node-version: "24"
40
+ registry-url: "https://npm.pkg.github.com"
41
+ cache: 'pnpm'
42
43
- name: Install dependencies
44
run: pnpm install
0 commit comments