From afc2b6a3944be7c0ee9fa70b3b28e5d9664c1562 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 4 Mar 2025 11:49:10 -0800 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60e89e21d..c7ae31aad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -269,6 +269,14 @@ jobs: name: playwright-report-${{ matrix.shard-index }} path: src-ui/playwright-report retention-days: 7 + - + name: Upload frontend test results + if: always() + uses: actions/upload-artifact@v4 + with: + name: junit.xml + path: src-ui/ + retention-days: 7 tests-coverage-upload: name: "Upload to Codecov" @@ -292,6 +300,12 @@ jobs: path: src-ui/coverage/ pattern: playwright-report-* merge-multiple: true + - + name: Download frontend test results + uses: actions/download-artifact@v4 + with: + path: src-ui/ + name: junit.xml - name: Upload frontend coverage to Codecov uses: codecov/codecov-action@v5