()
| 362 | const cwd = path.join(root, "repo"); |
| 363 | const archivePath = path.join(root, "repo.tar.gz"); |
| 364 | const cleanup = () => |
| 365 | rm(root, { recursive: true, force: true }).catch(() => {}); |
| 366 | const startedAt = Date.now(); |
| 367 | const archiveUrl = `https://api.github.com/repos/${owner}/${repo}/tarball/HEAD`; |
| 368 | logInfo(tag, "GitHub archive download start", { owner, repo, cwd }); |
no outgoing calls
no test coverage detected