Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 20 additions & 27 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,9 @@ jobs:
needs: [job_get_metadata, job_build]
if: needs.job_build.outputs.changed_browser_integration == 'true' || github.event_name != 'pull_request'
runs-on: ubuntu-24.04-large-js
container:
image: mcr.microsoft.com/playwright:v1.53.2-jammy
options: --ipc=host
timeout-minutes: 25
strategy:
fail-fast: false
Expand Down Expand Up @@ -606,6 +609,7 @@ jobs:
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
set-safe-directory: ${{ github.workspace }}
- name: Set up Node
uses: actions/setup-node@v4
with:
Expand All @@ -615,11 +619,6 @@ jobs:
with:
dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }}

- name: Install Playwright
uses: ./.github/actions/install-playwright
with:
browsers: ${{ matrix.project }}

- name: Run Playwright tests
env:
PW_BUNDLE: ${{ matrix.bundle }}
Expand Down Expand Up @@ -652,6 +651,9 @@ jobs:
needs: [job_get_metadata, job_build]
if: needs.job_build.outputs.changed_browser_integration == 'true' || github.event_name != 'pull_request'
runs-on: ubuntu-24.04
container:
image: mcr.microsoft.com/playwright:v1.53.2-jammy
options: --ipc=host
timeout-minutes: 15
strategy:
fail-fast: false
Expand All @@ -670,6 +672,7 @@ jobs:
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
set-safe-directory: ${{ github.workspace }}
- name: Set up Node
uses: actions/setup-node@v4
with:
Expand All @@ -679,11 +682,6 @@ jobs:
with:
dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }}

- name: Install Playwright
uses: ./.github/actions/install-playwright
with:
browsers: chromium

- name: Run Playwright Loader tests
env:
PW_BUNDLE: ${{ matrix.bundle }}
Expand Down Expand Up @@ -810,6 +808,9 @@ jobs:
needs: [job_get_metadata, job_build]
if: needs.job_build.outputs.changed_remix == 'true' || github.event_name != 'pull_request'
runs-on: ubuntu-24.04
container:
image: mcr.microsoft.com/playwright:v1.53.2-jammy
options: --ipc=host
timeout-minutes: 10
strategy:
fail-fast: false
Expand All @@ -820,6 +821,7 @@ jobs:
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
set-safe-directory: ${{ github.workspace }}
- name: Set up Node
uses: actions/setup-node@v4
with:
Expand All @@ -829,11 +831,6 @@ jobs:
with:
dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }}

- name: Install Playwright
uses: ./.github/actions/install-playwright
with:
browsers: chromium

- name: Run integration tests
env:
NODE_VERSION: ${{ matrix.node }}
Expand Down Expand Up @@ -919,6 +916,9 @@ jobs:
always() && needs.job_e2e_prepare.result == 'success' && needs.job_e2e_prepare.outputs.matrix != '{"include":[]}'
needs: [job_get_metadata, job_build, job_e2e_prepare]
runs-on: ubuntu-24.04
container:
image: mcr.microsoft.com/playwright:v1.53.2-jammy
options: --ipc=host
timeout-minutes: 15
env:
# We just use a dummy DSN here, only send to the tunnel anyhow
Expand All @@ -937,6 +937,7 @@ jobs:
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
set-safe-directory: ${{ github.workspace }}
- uses: pnpm/action-setup@v4
with:
version: 9.15.9
Expand Down Expand Up @@ -993,12 +994,6 @@ jobs:
timeout-minutes: 7
run: ${{ matrix.build-command || 'pnpm test:build' }}

- name: Install Playwright
uses: ./.github/actions/install-playwright
with:
browsers: chromium
cwd: ${{ runner.temp }}/test-application

- name: Run E2E test
working-directory: ${{ runner.temp }}/test-application
timeout-minutes: 10
Expand Down Expand Up @@ -1048,6 +1043,9 @@ jobs:
github.event.pull_request.head.repo.full_name == github.repository) && github.actor != 'dependabot[bot]'
needs: [job_get_metadata, job_build, job_e2e_prepare]
runs-on: ubuntu-24.04
container:
image: mcr.microsoft.com/playwright:v1.53.2-jammy
options: --ipc=host
timeout-minutes: 15
env:
E2E_TEST_AUTH_TOKEN: ${{ secrets.E2E_TEST_AUTH_TOKEN }}
Expand All @@ -1067,6 +1065,7 @@ jobs:
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
set-safe-directory: ${{ github.workspace }}
- uses: pnpm/action-setup@v4
with:
version: 9.15.9
Expand Down Expand Up @@ -1114,12 +1113,6 @@ jobs:
timeout-minutes: 7
run: ${{ matrix.build-command || 'pnpm test:build' }}

- name: Install Playwright
uses: ./.github/actions/install-playwright
with:
browsers: chromium
cwd: ${{ runner.temp }}/test-application

- name: Run E2E test
working-directory: ${{ runner.temp }}/test-application
timeout-minutes: 10
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ jobs:
job_e2e_tests:
name: E2E ${{ matrix.label }} Test
needs: [job_e2e_prepare]
runs-on: ubuntu-24.04
runs-on: ubuntu-24.04-large-js
container:
image: mcr.microsoft.com/playwright:v1.53.2-jammy
options: --ipc=host
timeout-minutes: 20
env:
# We just use a dummy DSN here, only send to the tunnel anyhow
Expand Down Expand Up @@ -120,6 +123,7 @@ jobs:
uses: actions/checkout@v5
with:
ref: ${{ env.HEAD_COMMIT }}
set-safe-directory: ${{ github.workspace }}
- uses: pnpm/action-setup@v4
with:
version: 9.15.9
Expand Down Expand Up @@ -159,12 +163,6 @@ jobs:
timeout-minutes: 7
run: yarn ${{ matrix.build-command }}

- name: Install Playwright
uses: ./.github/actions/install-playwright
with:
browsers: chromium
cwd: ${{ runner.temp }}/test-application

- name: Run E2E test
working-directory: ${{ runner.temp }}/test-application
timeout-minutes: 15
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/flaky-test-detector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,18 @@ concurrency:
jobs:
flaky-detector:
runs-on: ubuntu-24.04
container:
image: mcr.microsoft.com/playwright:v1.53.2-jammy
options: --ipc=host
timeout-minutes: 60
name: 'Check tests for flakiness'
# Also skip if PR is from master -> develop
if: ${{ github.base_ref != 'master' && github.ref != 'refs/heads/master' }}
steps:
- name: Check out current branch
uses: actions/checkout@v5
with:
set-safe-directory: ${{ github.workspace }}
- name: Set up Node
uses: actions/setup-node@v4
with:
Expand All @@ -49,11 +54,6 @@ jobs:
- name: Build packages
run: yarn build

- name: Install Playwright
uses: ./.github/actions/install-playwright
with:
browsers: 'chromium'

- name: Determine changed tests
uses: dorny/[email protected]
id: changed
Expand Down
2 changes: 1 addition & 1 deletion dev-packages/browser-integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"dependencies": {
"@babel/core": "^7.27.7",
"@babel/preset-typescript": "^7.16.7",
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/rrweb": "2.34.0",
"@sentry/browser": "10.22.0",
"@supabase/supabase-js": "2.49.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"zone.js": "~0.14.3"
},
"devDependencies": {
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/core": "latest || *",
"@angular-devkit/build-angular": "^17.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"zone.js": "~0.14.3"
},
"devDependencies": {
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/core": "latest || *",
"@angular-devkit/build-angular": "^18.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@angular-devkit/build-angular": "^19.0.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/core": "latest || *",
"@types/jasmine": "~5.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@angular-devkit/build-angular": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/core": "latest || *",
"@types/jasmine": "~5.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"@astrojs/check": "0.9.2",
"@astrojs/node": "8.3.4",
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry/astro": "* || latest",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@spotlightjs/astro": "2.1.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"@astrojs/internal-helpers": "^0.4.2",
"@astrojs/node": "^9.0.0",
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/astro": "latest || *",
"astro": "^5.0.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"//": "We just need the @sentry/aws-serverless layer zip file, not the NPM package",
"devDependencies": {
"@aws-sdk/client-lambda": "^3.863.0",
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/aws-serverless": "link:../../../../packages/aws-serverless/build/aws/dist-serverless/",
"@types/tmp": "^0.2.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"test:assert": "pnpm test"
},
"devDependencies": {
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"typescript": "~5.8.3",
"vite": "^7.0.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"typescript": "~5.0.0"
},
"devDependencies": {
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils"
},
"volta": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@remix-run/dev": "^2.7.2",
"@types/compression": "^1.7.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@remix-run/dev": "^2.7.2",
"@types/compression": "^1.7.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@remix-run/dev": "2.16.7",
"@remix-run/eslint-config": "2.16.7",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
]
},
"devDependencies": {
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"webpack": "^5.91.0",
"serve": "14.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@ember/optional-features": "~2.0.0",
"@glimmer/component": "~1.1.2",
"@glimmer/tracking": "~1.1.2",
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@ember/string": "~3.1.1",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/ember": "latest || *",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"loader.js": "^4.7.0",
"tracked-built-ins": "^3.3.0",
"webpack": "^5.91.0",
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry/ember": "latest || *",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@tsconfig/ember": "^3.0.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@react-router/dev": "7.6.0",
"@react-router/fs-routes": "7.6.0",
"@sentry-internal/test-utils": "link:../../../test-utils",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"rxjs": "^7.8.1"
},
"devDependencies": {
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"rxjs": "^7.8.1"
},
"devDependencies": {
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"rxjs": "^7.8.1"
},
"devDependencies": {
"@playwright/test": "~1.53.2",
"@playwright/test": "1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
Expand Down
Loading
Loading