From 08509b107df702c9208271ee331d3622b74dec1d Mon Sep 17 00:00:00 2001 From: Piyush Jagadish Bag Date: Sun, 28 Jun 2026 03:05:47 -0700 Subject: [PATCH] fix(ci): link e2e PR summary to Playwright artifact download Wire upload-artifact artifact-url into the playwright-report-summary custom-info link so reviewers reach the HTML report zip directly. --- .github/workflows/e2e_tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e_tests.yml b/.github/workflows/e2e_tests.yml index 02fdbc226..4a0d19409 100644 --- a/.github/workflows/e2e_tests.yml +++ b/.github/workflows/e2e_tests.yml @@ -51,6 +51,7 @@ jobs: run: npm run test:e2e - name: Upload Playwright Report and Screenshots + id: playwright-report uses: actions/upload-artifact@v7 if: steps.playwright-tests.conclusion != 'skipped' with: @@ -74,5 +75,5 @@ jobs: **Test Environment:** Ubuntu Latest, Node.js ${{ steps.setup_node.outputs.node-version }} **Browsers:** Chromium, Firefox - 📊 [View Detailed HTML Report](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) (download artifacts) + 📊 [Download HTML Report + traces](${{ steps.playwright-report.outputs.artifact-url }}) test-command: "npm run test:e2e"