From 1083a48286e8737627601f5941273f957e6f6caf Mon Sep 17 00:00:00 2001 From: EnixCoda Date: Sat, 17 Jan 2026 22:11:30 +0800 Subject: [PATCH] test: upload playwright report --- .github/workflows/tests.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b177c69..c8380e6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,6 +58,22 @@ jobs: CI: 'true' run: xvfb-run yarn test + - name: Upload Playwright Report + uses: actions/upload-artifact@v4 + if: ${{ !cancelled() }} + with: + name: playwright-report + path: playwright-report/ + retention-days: 30 + + - name: Upload Test Results + uses: actions/upload-artifact@v4 + if: ${{ !cancelled() }} + with: + name: test-results + path: test-results/ + retention-days: 30 + unit-test: needs: build runs-on: ubuntu-latest