mirror of
https://github.com/actions/runner-container-hooks.git
synced 2025-12-17 18:26:44 +00:00
fixed prepare-job for docker to allow for no job container
This commit is contained in:
@@ -94,7 +94,10 @@ export async function prepareJob(
|
||||
)
|
||||
}
|
||||
|
||||
const isAlpine = await isContainerAlpine(containerMetadata!.id)
|
||||
let isAlpine = false
|
||||
if (containerMetadata?.id) {
|
||||
isAlpine = await isContainerAlpine(containerMetadata.id)
|
||||
}
|
||||
|
||||
if (containerMetadata?.id) {
|
||||
containerMetadata.ports = await containerPorts(containerMetadata.id)
|
||||
@@ -105,7 +108,10 @@ export async function prepareJob(
|
||||
}
|
||||
}
|
||||
|
||||
const healthChecks: Promise<void>[] = [healthCheck(containerMetadata!)]
|
||||
const healthChecks: Promise<void>[] = []
|
||||
if (containerMetadata) {
|
||||
healthChecks.push(healthCheck(containerMetadata))
|
||||
}
|
||||
for (const service of servicesMetadata) {
|
||||
healthChecks.push(healthCheck(service))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user