We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9baeb21 commit 60b2f16Copy full SHA for 60b2f16
.github/workflows/ci.yml
@@ -56,12 +56,14 @@ jobs:
56
run: pnpm run test:run
57
58
- name: Run tests with coverage
59
- run: pnpm run test:coverage
+ run: |
60
+ pnpm run test:coverage > coverage_output.txt 2>&1
61
62
- name: Coverage Summary
63
run: |
- # Run tests with coverage and capture output
64
- pnpm run test:coverage > coverage_output.txt 2>&1
+ # Debug: Check what files exist
65
+ echo "Debug: Checking coverage files..."
66
+ ls -la coverage/ || echo "No coverage directory found"
67
68
echo "## 📊 Test Coverage Report" >> $GITHUB_STEP_SUMMARY
69
echo "" >> $GITHUB_STEP_SUMMARY
0 commit comments