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 b7ca0c1 commit b87c967Copy full SHA for b87c967
.github/workflows/test.yml
@@ -33,6 +33,7 @@ jobs:
33
test:
34
runs-on: ubuntu-latest
35
needs: test_matrix
36
+ if: always()
37
steps:
38
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
39
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
@@ -47,3 +48,9 @@ jobs:
47
48
# https://github.com/lirantal/lockfile-lint#readme
49
- name: Scan lockfile for security issues
50
run: npx lockfile-lint --path package-lock.json
51
+ - name: All matrix versions passed
52
+ if: ${{ !(contains(needs.*.result, 'failure')) }}
53
+ run: exit 0
54
+ - name: Some matrix version failed
55
+ if: ${{ contains(needs.*.result, 'failure') }}
56
+ run: exit 1
0 commit comments