(result, baseSha, headSha)
| 87 | | ---- | --- | ---- | ------- | -------- | --------- | ------------ |`; |
| 88 | |
| 89 | function row(result, baseSha, headSha) { |
| 90 | const diffViewUrl = `https://react-builds.vercel.app/commits/${headSha}/files/${result.path}?compare=${baseSha}`; |
| 91 | const rowArr = [ |
| 92 | `| [${result.path}](${diffViewUrl})`, |
| 93 | `**${change(result.change)}**`, |
| 94 | `${kbs(result.baseSize)}`, |
| 95 | `${kbs(result.headSize)}`, |
| 96 | `${change(result.changeGzip)}`, |
| 97 | `${kbs(result.baseSizeGzip)}`, |
| 98 | `${kbs(result.headSizeGzip)}`, |
| 99 | ]; |
| 100 | return rowArr.join(' | '); |
| 101 | } |
| 102 | |
| 103 | (async function () { |
| 104 | // Use git locally to grab the commit which represents the place |
no test coverage detected