chore: remove unnecessary console.log from coverage script (#913)

The report is written to coverage-comment.md — logging it to stdout
just adds noise to CI step output.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
fireddd 2026-04-04 23:13:39 +05:30
parent dfae0ee6e5
commit 568bb6819f
1 changed files with 0 additions and 2 deletions

View File

@ -29,7 +29,6 @@ if (changedFiles.length === 0) {
const comment = `${COMMENT_TAG}\n## Test Coverage Report\n\n_No TypeScript source files changed in this PR._\n`;
writeFileSync("coverage-comment.md", comment);
if (ghOutput) appendFileSync(ghOutput, "has_coverage=false\n");
console.log(comment);
process.exit(0);
}
@ -176,4 +175,3 @@ if (fileReports.length === 0) {
}
writeFileSync("coverage-comment.md", comment);
console.log(comment);