Skip to content

Commit c48144c

Browse files
committed
Merge branch 'timfish/build/dev-prod-browser-build' of github.com:getsentry/sentry-javascript into timfish/build/dev-prod-browser-build
2 parents 9fc0f3f + 0e52d5e commit c48144c

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,28 @@ jobs:
551551
files: packages/**/*.junit.xml
552552
token: ${{ secrets.CODECOV_TOKEN }}
553553

554+
job_browser_bundler_tests:
555+
name: Browser Bundler Tests
556+
needs: [job_get_metadata, job_build]
557+
timeout-minutes: 5
558+
runs-on: ubuntu-24.04
559+
steps:
560+
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
561+
uses: actions/checkout@v5
562+
with:
563+
ref: ${{ env.HEAD_COMMIT }}
564+
- name: Set up Node
565+
uses: actions/setup-node@v4
566+
with:
567+
node-version-file: 'package.json'
568+
- name: Restore caches
569+
uses: ./.github/actions/restore-cache
570+
with:
571+
dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }}
572+
573+
- name: Run bundler tests
574+
run: yarn test:bundler
575+
554576
job_browser_playwright_tests:
555577
name:
556578
Playwright ${{ matrix.bundle }}${{ matrix.project && matrix.project != 'chromium' && format(' {0}',
@@ -1160,6 +1182,7 @@ jobs:
11601182
job_node_unit_tests,
11611183
job_node_integration_tests,
11621184
job_cloudflare_integration_tests,
1185+
job_browser_bundler_tests,
11631186
job_browser_playwright_tests,
11641187
job_browser_loader_tests,
11651188
job_remix_integration_tests,

0 commit comments

Comments
 (0)