(shortCode: string, logs: string)
| 666 | } |
| 667 | |
| 668 | async function saveLogs(shortCode: string, logs: string) { |
| 669 | const logPath = join(await createTempDir(), `build-${shortCode}.log`); |
| 670 | await writeFile(logPath, logs); |
| 671 | return logPath; |
| 672 | } |
| 673 | |
| 674 | async function failDeploy( |
| 675 | shortCode: string, |
no test coverage detected
searching dependent graphs…