test: upload playwright report

This commit is contained in:
EnixCoda 2026-01-17 22:11:30 +08:00
parent a57a66df8c
commit 1083a48286

View file

@ -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