ci(vrt): clean up existing snapshots before running E2E tests

This commit is contained in:
d-kimsuon
2025-10-18 13:12:51 +09:00
parent d5b6b8b25d
commit a8695e61e4

View File

@@ -49,7 +49,11 @@ jobs:
- name: Capture screenshots
timeout-minutes: 3
run: pnpm e2e
run: |
if [ -d "e2e/snapshots" ]; then
rm -rf e2e/snapshots
fi
pnpm e2e
env:
MAX_CONCURRENCY: 10