diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b333b6bb..a425c4f9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: name: 'Playwright Tests' runs-on: ubuntu-latest container: - image: mcr.microsoft.com/playwright:v1.42.1-jammy + image: mcr.microsoft.com/playwright:v1.51.1-jammy steps: - name: Checkout diff --git a/playwright.config.ts b/playwright.config.ts index 751060e8..fff68788 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -5,8 +5,8 @@ export default defineConfig({ fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, - workers: process.env.CI ? 1 : undefined, - reporter: 'html', + workers: process.env.CI ? 3 : undefined, + reporter: process.env.CI ? [['github'], ['list']] : 'list', use: { baseURL: 'http://localhost:3000', trace: 'on-first-retry',