| 86 | // ---- ci check ---- |
| 87 | |
| 88 | interface CheckOptions { |
| 89 | comment?: boolean; // post a PR comment via gh (default: true in CI) |
| 90 | strict?: boolean; // exit 1 if any changed packages are uncovered |
| 91 | noFail?: boolean; // never exit 1, warn only |
| 92 | emitComment?: string; // also write the rendered comment to <dir>/comment.md for a downstream `ci comment` |
| 93 | } |
| 94 | |
| 95 | const COMMENT_ARTIFACT_FILE = 'comment.md'; |
| 96 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…