File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ jobs:
104
104
GITHUB_PUSH_BASE_SHA : ${{ github.event.base }}
105
105
GITHUB_PUSH_BEFORE_SHA : ${{ github.event.before }}
106
106
format :
107
- needs : metadata
107
+ needs : gitguardian
108
108
runs-on : ubuntu-latest
109
109
steps :
110
110
- id : checkout
@@ -129,7 +129,7 @@ jobs:
129
129
name : Check code formatting
130
130
run : yarn check:format
131
131
lint :
132
- needs : metadata
132
+ needs : gitguardian
133
133
runs-on : ubuntu-latest
134
134
steps :
135
135
- id : checkout
@@ -154,7 +154,7 @@ jobs:
154
154
name : Check lint status
155
155
run : yarn check:lint
156
156
spelling :
157
- needs : metadata
157
+ needs : gitguardian
158
158
runs-on : ubuntu-latest
159
159
steps :
160
160
- id : checkout
@@ -179,7 +179,9 @@ jobs:
179
179
name : Check spelling
180
180
run : yarn check:spelling
181
181
typescript :
182
- needs : metadata
182
+ needs :
183
+ - gitguardian
184
+ - metadata
183
185
runs-on : ubuntu-latest
184
186
strategy :
185
187
fail-fast : false
@@ -223,7 +225,7 @@ jobs:
223
225
name : Run typecheck
224
226
run : yarn typecheck
225
227
test :
226
- needs : metadata
228
+ needs : gitguardian
227
229
runs-on : ubuntu-latest
228
230
strategy :
229
231
fail-fast : false
@@ -276,7 +278,9 @@ jobs:
276
278
GITHUB_SHA : ${{ github.event.pull_request.head.sha || github.sha }}
277
279
GITHUB_WORKSPACE : ${{ github.workspace }}
278
280
build :
279
- needs : metadata
281
+ needs :
282
+ - gitguardian
283
+ - metadata
280
284
runs-on : ubuntu-latest
281
285
steps :
282
286
- id : checkout
You can’t perform that action at this time.
0 commit comments