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 cf2011e commit 9a7af92Copy full SHA for 9a7af92
.github/workflows/if-nodejs-pr-testing.yml
@@ -29,7 +29,14 @@ jobs:
29
node-version: 14
30
- if: steps.packagejson.outputs.exists == 'true'
31
name: Install dependencies
32
+ id: first-installation
33
run: npm install --loglevel verbose
34
+ continue-on-error: true
35
+ - if: steps.first-installation.outputs.status == 'failure' && steps.packagejson.outputs.exists == 'true'
36
+ name: Clear NPM cache and install deps again
37
+ run: |
38
+ npm cache clean --force
39
+ npm install --loglevel verbose
40
41
name: Test
42
run: npm test
0 commit comments