Skip to content

Commit 8c6b832

Browse files
authored
ci(workflow): fix test workflow to assure it is not skipped if test_matrix fails (#83)
1 parent a53a92a commit 8c6b832

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/test.yml

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
name: Test
2-
on:
2+
"on":
33
push:
44
branches:
55
- main
66
pull_request:
7-
types: [opened, synchronize]
8-
7+
types:
8+
- opened
9+
- synchronize
910
jobs:
1011
test_matrix:
1112
runs-on: ubuntu-latest
@@ -15,19 +16,20 @@ jobs:
1516
- 14
1617
- 16
1718
- 18
18-
1919
steps:
20-
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
20+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
2121
- name: Use Node.js ${{ matrix.node_version }}
22-
uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # tag=v3
22+
uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93
2323
with:
2424
node-version: ${{ matrix.node_version }}
2525
cache: npm
2626
- run: npm ci
2727
- run: npm test
28-
2928
test:
3029
runs-on: ubuntu-latest
3130
needs: test_matrix
3231
steps:
32+
- run: exit 1
33+
if: ${{ needs.test_matrix.result != 'success' }}
3334
- run: echo ok
35+
if: ${{ always() }}

0 commit comments

Comments
 (0)