We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f22f2ad commit 04af013Copy full SHA for 04af013
1 file changed
.github/workflows/unit-test.yml
@@ -11,18 +11,17 @@ jobs:
11
- name: Checkout code
12
uses: actions/checkout@v4
13
14
+ - name: Setup pnpm
15
+ uses: pnpm/action-setup@v4
16
+ with:
17
+ version: 10.28.0 # or your local pnpm version
18
+
19
- name: Set up Node.js
20
uses: actions/setup-node@v4
21
with:
22
node-version: '22.x'
23
cache: 'pnpm' # optional but recommended
24
- - name: Setup pnpm
- uses: pnpm/action-setup@v4
- with:
- version: 10.28.0 # or your local pnpm version
- run_install: false
25
-
26
- name: Install dependencies for all plugins
27
run: |
28
NODE_ENV=PREPACK_MODE npm run bootstrap
0 commit comments