Skip to content

Commit 15188c1

Browse files
authored
ci: update of files from global .github repo (#978)
1 parent 1c08921 commit 15188c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/if-nodejs-pr-testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
id: first-installation
6464
run: npm ci
6565
continue-on-error: true
66-
- if: steps.first-installation.outputs.status == 'failure' && steps.packagejson.outputs.exists == 'true'
66+
- if: steps.first-installation.outcome != 'success' && steps.packagejson.outputs.exists == 'true'
6767
name: Clear NPM cache and install deps again
6868
run: |
6969
npm cache clean --force

.github/workflows/if-nodejs-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
id: first-installation
103103
run: npm ci
104104
continue-on-error: true
105-
- if: steps.first-installation.outputs.status == 'failure' && steps.packagejson.outputs.exists == 'true'
105+
- if: steps.first-installation.outcome != 'success' && steps.packagejson.outputs.exists == 'true'
106106
name: Clear NPM cache and install deps again
107107
run: |
108108
npm cache clean --force

0 commit comments

Comments
 (0)