Skip to content

Commit 8527fe8

Browse files
committed
ci: Align test naming
1 parent 490f76f commit 8527fe8

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ env:
3232
CACHED_BUILD_PATHS: |
3333
${{ github.workspace }}/packages/*/build
3434
${{ github.workspace }}/packages/ember/*.d.ts
35-
${{ github.workspace }}/packages/ember/instance-initializers
3635
${{ github.workspace }}/packages/gatsby/*.d.ts
3736
${{ github.workspace }}/packages/core/src/version.ts
3837
${{ github.workspace }}/packages/serverless
@@ -420,7 +419,7 @@ jobs:
420419
uses: codecov/codecov-action@v3
421420

422421
job_nextjs_integration_test:
423-
name: Test @sentry/nextjs on (Node ${{ matrix.node }})
422+
name: Nextjs (Node ${{ matrix.node }}) Tests
424423
needs: [job_get_metadata, job_build]
425424
if: needs.job_get_metadata.outputs.changed_nextjs == 'true' || github.event_name != 'pull_request'
426425
timeout-minutes: 30
@@ -458,7 +457,7 @@ jobs:
458457
# Ember tests are separate from the rest because they are the slowest part of the test suite, and making them a
459458
# separate job allows them to run in parallel with the other tests.
460459
job_ember_tests:
461-
name: Test @sentry/ember
460+
name: Ember (${{ matrix.scenario }}) Tests
462461
needs: [job_get_metadata, job_build]
463462
if: needs.job_get_metadata.outputs.changed_ember == 'true' || github.event_name != 'pull_request'
464463
timeout-minutes: 10
@@ -500,7 +499,7 @@ jobs:
500499
uses: codecov/codecov-action@v3
501500

502501
job_browser_playwright_tests:
503-
name: Playwright - ${{ (matrix.tracing_only && 'Browser + Tracing') || 'Browser' }} (${{ matrix.bundle }})
502+
name: Playwright (${{ matrix.bundle }})${{ (matrix.tracing_only && ' tracing only') || '' }} Tests
504503
needs: [job_get_metadata, job_build]
505504
if: needs.job_get_metadata.outputs.changed_browser_integration == 'true' || github.event_name != 'pull_request'
506505
runs-on: ubuntu-20.04
@@ -550,7 +549,7 @@ jobs:
550549
yarn test:ci
551550
552551
job_browser_integration_tests:
553-
name: Old Browser Integration Tests (${{ matrix.browser }})
552+
name: Browser (${{ matrix.browser }}) Tests
554553
needs: [job_get_metadata, job_build]
555554
if: needs.job_get_metadata.outputs.changed_browser == 'true' || github.event_name != 'pull_request'
556555
runs-on: ubuntu-20.04
@@ -619,7 +618,7 @@ jobs:
619618
yarn test:package
620619
621620
job_node_integration_tests:
622-
name: Node SDK Integration Tests (${{ matrix.node }})
621+
name: Node (${{ matrix.node }}) Integration Tests
623622
needs: [job_get_metadata, job_build]
624623
if: needs.job_get_metadata.outputs.changed_node == 'true' || github.event_name != 'pull_request'
625624
runs-on: ubuntu-20.04
@@ -655,7 +654,7 @@ jobs:
655654
yarn test
656655
657656
job_remix_integration_tests:
658-
name: Remix SDK Integration Tests (${{ matrix.node }})
657+
name: Remix (Node ${{ matrix.node }}) Tests
659658
needs: [job_get_metadata, job_build]
660659
if: needs.job_get_metadata.outputs.changed_remix == 'true' || github.event_name != 'pull_request'
661660
runs-on: ubuntu-20.04

0 commit comments

Comments
 (0)