@@ -154,12 +154,10 @@ jobs:
154
154
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
155
155
156
156
test-debug :
157
- name : " Test: Debug "
157
+ name : " Test: Basic "
158
158
runs-on : ubuntu-latest
159
159
env :
160
- NODE_DEBUG : ' http'
161
160
ACTIONS_STEP_DEBUG : ' true'
162
- ACTIONS_RUNNER_DEBUG : ' true'
163
161
steps :
164
162
- name : Harden Runner
165
163
uses : step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
@@ -181,6 +179,7 @@ jobs:
181
179
test-no-token :
182
180
name : " Test: No Token"
183
181
runs-on : ubuntu-latest
182
+ if : github.event.pull_request.draft == 'false'
184
183
permissions :
185
184
id-token : none
186
185
steps :
@@ -204,6 +203,7 @@ jobs:
204
203
test-action :
205
204
name : " Test: Install (${{ matrix.label }})"
206
205
runs-on : ${{ matrix.os }}
206
+ if : github.event.pull_request.draft == 'false'
207
207
permissions :
208
208
id-token : write
209
209
strategy :
@@ -239,6 +239,7 @@ jobs:
239
239
test-path :
240
240
name : " Test: Path (${{ matrix.label }})"
241
241
runs-on : ${{ matrix.os }}
242
+ if : github.event.pull_request.draft == 'false'
242
243
strategy :
243
244
fail-fast : false
244
245
matrix :
@@ -275,6 +276,7 @@ jobs:
275
276
test-smoketest :
276
277
name : " Test: Smoke Test (${{ matrix.label }})"
277
278
runs-on : ${{ matrix.os }}
279
+ if : github.event.pull_request.draft == 'false'
278
280
strategy :
279
281
fail-fast : false
280
282
matrix :
@@ -328,6 +330,7 @@ jobs:
328
330
test-noagent :
329
331
name : " Test: No Agent (${{ matrix.label }})"
330
332
runs-on : ${{ matrix.os }}
333
+ if : github.event.pull_request.draft == 'false'
331
334
strategy :
332
335
fail-fast : false
333
336
matrix :
@@ -366,6 +369,7 @@ jobs:
366
369
test-agent :
367
370
name : " Test: Agent (${{ matrix.label }})"
368
371
runs-on : ${{ matrix.os }}
372
+ if : github.event.pull_request.draft == 'false'
369
373
timeout-minutes : 5
370
374
strategy :
371
375
fail-fast : false
0 commit comments