We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91db503 commit 1fef885Copy full SHA for 1fef885
1 file changed
.github/actions/npmInstallWithRetries/action.yml
@@ -7,7 +7,10 @@ inputs:
7
runs:
8
using: composite
9
steps:
10
- - name: npm install
+ - name: timeout config
11
+ run: npm config set timeout 600000
12
+ shell: bash
13
+ - name: npm ci
14
uses: salesforcecli/github-workflows/.github/actions/retry@main
15
with:
- command: npm install --timeout 600000 ${{ inputs.ignore-scripts == 'true' && '--ignore-scripts' || '' }}
16
+ command: npm ci --no-audit --no-fund ${{ inputs.ignore-scripts == 'true' && '--ignore-scripts' || '' }}
0 commit comments