Skip to content

Commit 60b2f16

Browse files
committed
fix: another coverage fix
1 parent 9baeb21 commit 60b2f16

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,14 @@ jobs:
5656
run: pnpm run test:run
5757

5858
- name: Run tests with coverage
59-
run: pnpm run test:coverage
59+
run: |
60+
pnpm run test:coverage > coverage_output.txt 2>&1
6061
6162
- name: Coverage Summary
6263
run: |
63-
# Run tests with coverage and capture output
64-
pnpm run test:coverage > coverage_output.txt 2>&1
64+
# Debug: Check what files exist
65+
echo "Debug: Checking coverage files..."
66+
ls -la coverage/ || echo "No coverage directory found"
6567
6668
echo "## 📊 Test Coverage Report" >> $GITHUB_STEP_SUMMARY
6769
echo "" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)