Skip to content

Commit 8475329

Browse files
committed
revert naming of jobs
1 parent b876a94 commit 8475329

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
unit-tests:
192192
needs: [check-permissions, build-packages]
193193
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
194-
name: Unit Tests
194+
name: Unit Tests${{ matrix.clerk-use-rq == 'true' && ' (CLERK_USE_RQ=true)' || '' }}
195195
permissions:
196196
contents: read
197197
actions: write # needed for actions/upload-artifact
@@ -211,23 +211,18 @@ jobs:
211211
- node-version: 22
212212
test-filter: "**"
213213
clerk-use-rq: "false"
214-
run-name: "All packages (CLERK_USE_RQ=false)"
215214
- node-version: 22
216215
test-filter: "--filter=@clerk/shared"
217216
clerk-use-rq: "false"
218-
run-name: "@clerk/shared (CLERK_USE_RQ=false)"
219217
- node-version: 22
220218
test-filter: "--filter=@clerk/shared"
221219
clerk-use-rq: "true"
222-
run-name: "@clerk/shared (CLERK_USE_RQ=true)"
223220
- node-version: 22
224221
test-filter: "--filter=@clerk/clerk-js"
225222
clerk-use-rq: "false"
226-
run-name: "@clerk/clerk-js (CLERK_USE_RQ=false)"
227223
- node-version: 22
228224
test-filter: "--filter=@clerk/clerk-js"
229225
clerk-use-rq: "true"
230-
run-name: "@clerk/clerk-js (CLERK_USE_RQ=true)"
231226

232227
steps:
233228
- name: Checkout Repo
@@ -265,7 +260,7 @@ jobs:
265260
echo "Running full test suite on Node ${{ matrix.node-version }}."
266261
pnpm turbo test $TURBO_ARGS
267262
else
268-
echo "Running tests: ${{ matrix.run-name }}"
263+
echo "Running tests with filter: ${{ matrix.test-filter }}"
269264
pnpm turbo test $TURBO_ARGS ${{ matrix.test-filter }}
270265
fi
271266
env:
@@ -286,14 +281,14 @@ jobs:
286281
if: ${{ env.TURBO_SUMMARIZE == 'true' }}
287282
continue-on-error: true
288283
with:
289-
name: turbo-summary-report-unit-${{ github.run_id }}-${{ github.run_attempt }}-node-${{ matrix.node-version }}-${{ matrix.clerk-use-rq || 'default' }}
284+
name: turbo-summary-report-unit-${{ github.run_id }}-${{ github.run_attempt }}-node-${{ matrix.node-version }}${{ matrix.clerk-use-rq == 'true' && '-rq' || '' }}
290285
path: .turbo/runs
291286
retention-days: 5
292287

293288
integration-tests:
294289
needs: [check-permissions, build-packages]
295290
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
296-
name: Integration Tests
291+
name: Integration Tests${{ matrix.clerk-use-rq == 'true' && ' (CLERK_USE_RQ=true)' || '' }}
297292
permissions:
298293
contents: read
299294
actions: write # needed for actions/upload-artifact
@@ -487,7 +482,7 @@ jobs:
487482
if: ${{ cancelled() || failure() }}
488483
uses: actions/upload-artifact@v4
489484
with:
490-
name: playwright-traces-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.test-name }}${{ matrix.next-version && format('-next{0}', matrix.next-version) || '' }}${{ matrix.clerk-use-rq && format('-rq{0}', matrix.clerk-use-rq) || '' }}
485+
name: playwright-traces-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.test-name }}${{ matrix.next-version && format('-next{0}', matrix.next-version) || '' }}${{ matrix.clerk-use-rq == 'true' && '-rq' || '' }}
491486
path: integration/test-results
492487
retention-days: 1
493488

0 commit comments

Comments
 (0)