34
34
name : test-results-unit-tests
35
35
path : test-result-unit.json
36
36
37
+ if : ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
37
38
with :
38
39
name : test-results / unit-tests
39
40
path : test-result-unit.json
53
54
name : test-results-spec-4
54
55
path : test-result-spec4.json
55
56
57
+ if : ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
56
58
with :
57
59
name : test-results / spec-4
58
60
path : test-result-spec4.json
72
74
name : test-results-spec-6
73
75
path : test-result-spec6.json
74
76
77
+ if : ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
75
78
with :
76
79
name : test-results / spec-6
77
80
path : test-result-spec6.json
91
94
name : test-results-spec-7
92
95
path : test-result-spec7.json
93
96
97
+ if : ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
94
98
with :
95
99
name : test-results / spec-7
96
100
path : test-result-spec7.json
@@ -110,7 +114,28 @@ jobs:
110
114
name : test-results-spec-2019-09
111
115
path : test-result-spec2019-09.json
112
116
117
+ if : ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
113
118
with :
114
119
name : test-results / spec-2019-09
115
120
path : test-result-spec2019-09.json
116
121
reporter : mocha-json
122
+
123
+ run-spec-2020-12-tests :
124
+ runs-on : ubuntu-latest
125
+ needs : install
126
+ steps :
127
+ - uses : actions/checkout@v3
128
+ - name : Install dependencies
129
+ run : yarn install --frozen-lockfile
130
+ - name : Test spec 2020-12
131
+ run : yarn test:2020:ci
132
+ - uses : actions/upload-artifact@v4
133
+ with :
134
+ name : test-results-spec-2020-12
135
+ path : test-result-spec2020-12.json
136
+
137
+ if : ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
138
+ with :
139
+ name : test-results / spec-2020-12
140
+ path : test-result-spec2020-12.json
141
+ reporter : mocha-json
0 commit comments