File tree 1 file changed +9
-7
lines changed
1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
name : Test
2
- on :
2
+ " on " :
3
3
push :
4
4
branches :
5
5
- main
6
6
pull_request :
7
- types : [opened, synchronize]
8
-
7
+ types :
8
+ - opened
9
+ - synchronize
9
10
jobs :
10
11
test_matrix :
11
12
runs-on : ubuntu-latest
@@ -15,19 +16,20 @@ jobs:
15
16
- 14
16
17
- 16
17
18
- 18
18
-
19
19
steps :
20
- - uses : actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
20
+ - uses : actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
21
21
- name : Use Node.js ${{ matrix.node_version }}
22
- uses : actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # tag=v3
22
+ uses : actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93
23
23
with :
24
24
node-version : ${{ matrix.node_version }}
25
25
cache : npm
26
26
- run : npm ci
27
27
- run : npm test
28
-
29
28
test :
30
29
runs-on : ubuntu-latest
31
30
needs : test_matrix
32
31
steps :
32
+ - run : exit 1
33
+ if : ${{ needs.test_matrix.result != 'success' }}
33
34
- run : echo ok
35
+ if : ${{ always() }}
You can’t perform that action at this time.
0 commit comments