From 4bb139e98f2fcdf5ea632e6927d6659cf1597ad3 Mon Sep 17 00:00:00 2001 From: Anna Szczech Date: Fri, 17 Jan 2025 10:37:31 +0100 Subject: [PATCH] fix --- .github/actions/merge-pw-reports/action.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/actions/merge-pw-reports/action.yml b/.github/actions/merge-pw-reports/action.yml index f8a993ede56..4fa42655fd1 100644 --- a/.github/actions/merge-pw-reports/action.yml +++ b/.github/actions/merge-pw-reports/action.yml @@ -32,12 +32,18 @@ runs: - name: Merge ctfr reports shell: bash - run: npx ctrf merge ./ctrf + run: npx ctrf merge ./ctrf --output merged-report.json + + - name: Upload CTRF report + uses: actions/upload-artifact@v4 + with: + name: merged-report.json + - name: Publish Test Report uses: ctrf-io/github-test-reporter@v1 with: - report-path: .ctrf/ctrf-report.json + report-path: .ctrf/merged-report.json summary-report: true previous-results-report: true failed-report: true