Skip to content

Commit d903792

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 8be3777 commit d903792

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

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

Lines changed: 12 additions & 1 deletion
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@v6
5061
with:
5162
flags: unit
@@ -54,7 +65,7 @@ jobs:
5465
files: apps/meteor/coverage/jest/lcov.info,apps/meteor/coverage/nyc/lcov.info
5566
disable_search: true
5667

57-
- uses: codecov/codecov-action@v5
68+
- uses: codecov/codecov-action@v6
5869
with:
5970
flags: packages
6071
verbose: true

0 commit comments

Comments
 (0)