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 da8dd9a commit 85d6787Copy full SHA for 85d6787
1 file changed
actions/setup-environment/action.yml
@@ -5,6 +5,10 @@ inputs:
5
description: 'Whether to use pnpm (true) or npm (false)'
6
required: false
7
default: 'false'
8
+ install-flags:
9
+ description: 'Additional installation flags'
10
+ required: false
11
+ default: ''
12
ref:
13
description: 'The ref to checkout'
14
@@ -58,9 +62,9 @@ runs:
58
62
- name: Install dependencies with pnpm
59
63
if: inputs.pnpm == 'true'
60
64
shell: bash
61
- run: pnpm install --frozen-lockfile
65
+ run: pnpm install --frozen-lockfile ${{ inputs.install-flags }}
66
67
- name: Install dependencies with npm
68
if: inputs.pnpm != 'true'
69
- run: npm ci
70
+ run: npm ci ${{ inputs.install-flags }}
0 commit comments