File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed
Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -39,17 +39,17 @@ jobs:
3939 working-directory : frontend
4040 steps :
4141 - uses : actions/checkout@v5
42+ - name : Setup pnpm
43+ uses : pnpm/action-setup@v4
44+ with :
45+ version : " 9.12.2"
46+ run_install : false
4247 - name : Setup Node.js
4348 uses : actions/setup-node@v4
4449 with :
4550 node-version : " 20"
4651 cache : " pnpm"
4752 cache-dependency-path : frontend/pnpm-lock.yaml
48- - name : Setup pnpm
49- uses : pnpm/action-setup@v4
50- with :
51- version : " 9.12.2"
52- run_install : false
5353 - name : Install dependencies
5454 run : pnpm install --frozen-lockfile
5555 - name : Build web app
Original file line number Diff line number Diff line change @@ -68,17 +68,19 @@ jobs:
6868
6969 - name : Setup Node.js
7070 if : steps.detect.outputs.exists == 'true'
71- uses : actions/setup-node@v4
72- with :
73- node-version : " 20"
74- cache : " pnpm"
75- cache-dependency-path : frontend/pnpm-lock.yaml
7671 - name : Setup pnpm
7772 if : steps.detect.outputs.exists == 'true'
7873 uses : pnpm/action-setup@v4
7974 with :
8075 version : " 9.12.2"
8176 run_install : false
77+ - name : Setup Node.js
78+ if : steps.detect.outputs.exists == 'true'
79+ uses : actions/setup-node@v4
80+ with :
81+ node-version : " 20"
82+ cache : " pnpm"
83+ cache-dependency-path : frontend/pnpm-lock.yaml
8284 - name : Install dependencies
8385 if : steps.detect.outputs.exists == 'true'
8486 working-directory : frontend
You can’t perform that action at this time.
0 commit comments