Skip to content

Commit

Permalink
clean up logs
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcavazos committed Mar 11, 2025
1 parent 982c62b commit 0c6493c
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/custard-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,11 @@ jobs:
console.log(e.stderr.toString("utf8"));
}
}
core.notice("Summary:")
core.info("Summary:")
console.log("\n\n=== Summary ===")
console.log(` Passed: ${affected.length - failed.length}`)
console.log(` Failed: ${failed.length}`)
if (failed.length > 0) {
for (const path of failed) {
console.log(` - ❌ ${path}`)
}
core.setFailed(`Failed '${cmd}' on ${JSON.stringify(failed)}`)
core.setFailed(`Failed '${cmd}' on ${failed.join(', ')}`)
}
region-tags:
Expand Down

0 comments on commit 0c6493c

Please sign in to comment.