Skip to content

Commit 3821836

Browse files
committed
ci: add firefox and safari to playwright install
1 parent c4e276b commit 3821836

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/end-to-end.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: npm ci
2828
- name: Run Playwright tests
2929
run: |
30-
npx playwright install --with-deps chromium
30+
npx playwright install --with-deps firefox chromium webkit
3131
npx ng e2e --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
3232
- name: Upload blob report to GitHub Actions Artifacts
3333
if: ${{ !cancelled() }}

playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default defineConfig({
1818
/* Retry on CI only */
1919
retries: process.env['CI'] ? 2 : 0,
2020
/* Opt out of parallel tests on CI. */
21-
workers: process.env['CI'] ? 1 : undefined,
21+
workers: process.env['CI'] ? 4 : undefined,
2222
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
2323
reporter: 'html',
2424
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */

0 commit comments

Comments
 (0)