()
| 88 | } |
| 89 | |
| 90 | function siteStatus() { |
| 91 | const output = sh("git", [ |
| 92 | "-C", |
| 93 | siteRoot, |
| 94 | "status", |
| 95 | "--short", |
| 96 | "--", |
| 97 | "web/public/leetcode-animation", |
| 98 | "web/src/lib/leetcode-animation.ts", |
| 99 | "web/src/components/leetcode-animation-player.tsx", |
| 100 | ]); |
| 101 | return output ? output.split("\n") : []; |
| 102 | } |
| 103 | |
| 104 | function suggestedMessage(report) { |
| 105 | if (report.added.length === 1 && !report.changed.length && !report.removed.length) { |
no test coverage detected