We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51a4b30 commit 1e0d0d5Copy full SHA for 1e0d0d5
1 file changed
.github/workflows/ci.yml
@@ -710,15 +710,11 @@ jobs:
710
cat package.json 2>&1 || true
711
cd /workspace
712
713
- # Run snap tests
+ # Debug: run only migration-auto-create-vite-config snap test to isolate error
714
git config --global --add safe.directory /workspace
715
- RUST_BACKTRACE=1 pnpm test
716
- if ! git diff --exit-code; then
717
- echo '::error::Snapshot diff detected. Run pnpm -F vite-plus snap-test locally and commit the updated snap.txt files.'
718
- git diff --stat
719
- git diff
720
- exit 1
721
- fi
+ RUST_BACKTRACE=1 pnpm -F vite-plus snap-test-global migration-auto-create-vite-config 2>&1 || true
+ echo '=== snap.txt diff ==='
+ git diff packages/cli/snap-tests-global/migration-auto-create-vite-config/snap.txt || true
722
"
723
724
install-e2e-test:
0 commit comments