Skip to content

Commit 4531845

Browse files
ggazzoclaude
andcommitted
chore: add debug step to inspect coverage file contents
Temporary step to verify lcov paths before codecov upload. Will be removed once the unusable report issue is resolved. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent de19f48 commit 4531845

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/ci-test-unit.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,17 @@ jobs:
4646
- name: Unit Test
4747
run: yarn testunit --concurrency=1
4848

49+
- name: Debug coverage files
50+
run: |
51+
echo "=== Jest lcov (first 20 lines) ==="
52+
head -20 apps/meteor/coverage/jest/lcov.info || echo "FILE NOT FOUND"
53+
echo ""
54+
echo "=== nyc lcov (first 20 lines) ==="
55+
head -20 apps/meteor/coverage/nyc/lcov.info || echo "FILE NOT FOUND"
56+
echo ""
57+
echo "=== File sizes ==="
58+
wc -l apps/meteor/coverage/jest/lcov.info apps/meteor/coverage/nyc/lcov.info || true
59+
4960
- uses: codecov/codecov-action@v5
5061
with:
5162
flags: unit

0 commit comments

Comments
 (0)