()
| 9 | let defaultContextPromise: Promise<string> | undefined; |
| 10 | |
| 11 | async function getDefaultContext(): Promise<string> { |
| 12 | defaultContextPromise ??= new Build().gitContext(); |
| 13 | return await defaultContextPromise; |
| 14 | } |
| 15 | |
| 16 | export interface Inputs { |
| 17 | 'add-hosts': string[]; |
no outgoing calls
no test coverage detected