From 53ceb529331183982b837104a587442c92e524f4 Mon Sep 17 00:00:00 2001 From: sbrjt Date: Sat, 4 Jul 2026 16:56:00 +0530 Subject: [PATCH 1/2] docs: clarify GitHub Actions reporter usage https://playwright.dev/docs/test-reporters#github-actions-annotations --- examples/playwright-e2e-testing/playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/playwright-e2e-testing/playwright.config.ts b/examples/playwright-e2e-testing/playwright.config.ts index e74cac1..2c1aa0e 100644 --- a/examples/playwright-e2e-testing/playwright.config.ts +++ b/examples/playwright-e2e-testing/playwright.config.ts @@ -14,6 +14,7 @@ export default defineConfig({ // Reporter to use reporter: "html", + // Use the 'github' for annotations in GitHub Actions use: { // Collect trace when retrying the failed test. From e0058d37e2578c1a29becc1bf6f5ad6ba4278f51 Mon Sep 17 00:00:00 2001 From: sbrjt Date: Sat, 4 Jul 2026 17:04:22 +0530 Subject: [PATCH 2/2] --- examples/playwright-e2e-testing/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/playwright-e2e-testing/playwright.config.ts b/examples/playwright-e2e-testing/playwright.config.ts index 2c1aa0e..c03bc4b 100644 --- a/examples/playwright-e2e-testing/playwright.config.ts +++ b/examples/playwright-e2e-testing/playwright.config.ts @@ -14,7 +14,7 @@ export default defineConfig({ // Reporter to use reporter: "html", - // Use the 'github' for annotations in GitHub Actions + // Use "github" if you want GitHub Actions annotations use: { // Collect trace when retrying the failed test.