Skip to content

Commit 3d92dc6

Browse files
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! Introduce Playwright Component Testing (#857)
1 parent 98a36ef commit 3d92dc6

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/playwright.yml

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99
test:
1010
name: Playwright
1111
runs-on: ubuntu-24.04
12+
container:
13+
image: mcr.microsoft.com/playwright:v1.50.1-noble
1214
steps:
1315
- name: Clone repository
1416
uses: actions/checkout@v4
@@ -31,6 +33,9 @@ jobs:
3133
- name: Run Playwright tests and generate test report
3234
run: npm run test:playwright-ct:all
3335

36+
- name: Install Playwright Browsers
37+
run: npx playwright install --with-deps
38+
3439
- name: Upload Playwright test report
3540
uses: actions/upload-artifact@v4
3641
if: ${{ !cancelled() }}

.github/workflows/release-management.yml

-6
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,12 @@ jobs:
2424
- name: Install
2525
run: npm ci
2626

27-
- name: Install Playwright Browsers
28-
run: npx playwright install --with-deps
29-
3027
- name: Lint
3128
run: npm run lint
3229

3330
- name: Test
3431
run: npm test
3532

36-
- name: Test Playwright
37-
run: npm run test:playwright-ct:all
38-
3933
- name: Build
4034
run: npm run build
4135

0 commit comments

Comments
 (0)