Skip to content

Commit d139c70

Browse files
committed
ci(workflows): [ci] make jobs dependant on gitguardian
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
1 parent aa46fa3 commit d139c70

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/ci.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
GITHUB_PUSH_BASE_SHA: ${{ github.event.base }}
105105
GITHUB_PUSH_BEFORE_SHA: ${{ github.event.before }}
106106
format:
107-
needs: metadata
107+
needs: gitguardian
108108
runs-on: ubuntu-latest
109109
steps:
110110
- id: checkout
@@ -129,7 +129,7 @@ jobs:
129129
name: Check code formatting
130130
run: yarn check:format
131131
lint:
132-
needs: metadata
132+
needs: gitguardian
133133
runs-on: ubuntu-latest
134134
steps:
135135
- id: checkout
@@ -154,7 +154,7 @@ jobs:
154154
name: Check lint status
155155
run: yarn check:lint
156156
spelling:
157-
needs: metadata
157+
needs: gitguardian
158158
runs-on: ubuntu-latest
159159
steps:
160160
- id: checkout
@@ -179,7 +179,9 @@ jobs:
179179
name: Check spelling
180180
run: yarn check:spelling
181181
typescript:
182-
needs: metadata
182+
needs:
183+
- gitguardian
184+
- metadata
183185
runs-on: ubuntu-latest
184186
strategy:
185187
fail-fast: false
@@ -222,7 +224,7 @@ jobs:
222224
name: Run typecheck
223225
run: yarn typecheck
224226
test:
225-
needs: metadata
227+
needs: gitguardian
226228
runs-on: ubuntu-latest
227229
strategy:
228230
fail-fast: false
@@ -275,7 +277,9 @@ jobs:
275277
GITHUB_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
276278
GITHUB_WORKSPACE: ${{ github.workspace }}
277279
build:
278-
needs: metadata
280+
needs:
281+
- gitguardian
282+
- metadata
279283
runs-on: ubuntu-latest
280284
steps:
281285
- id: checkout

0 commit comments

Comments
 (0)