File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ inputs:
17
17
install :
18
18
description : " Runs pnpm install"
19
19
required : false
20
- default : false
20
+ default : ' false'
21
21
install-ignore-scripts :
22
22
description : " Runs pnpm install --ignore-scripts"
23
23
required : false
24
- default : false
24
+ default : ' false'
25
25
26
26
runs :
27
27
using : " composite"
@@ -52,11 +52,11 @@ runs:
52
52
${{ runner.os }}-pnpm-store-
53
53
54
54
- name : Run pnpm install
55
- if : " ${{ inputs.install }}"
55
+ if : " ${{ inputs.install == 'true' }}"
56
56
shell : bash
57
- run : pnpm install
57
+ run : pnpm install --frozen-lockfile
58
58
59
59
- name : Run pnpm install --ignore-scripts
60
- if : " ${{ inputs.install-ignore-scripts }}"
60
+ if : " ${{ inputs.install-ignore-scripts == 'true' }}"
61
61
shell : bash
62
- run : pnpm install --ignore-scripts
62
+ run : pnpm install --frozen-lockfile -- ignore-scripts
You can’t perform that action at this time.
0 commit comments