(config: RuntimeConfig | undefined)
| 23 | * - "docker": Docker container runtime |
| 24 | */ |
| 25 | export function isIncompatibleRuntimeConfig(config: RuntimeConfig | undefined): boolean { |
| 26 | if (!config) { |
| 27 | return false; |
| 28 | } |
| 29 | // Unknown type from a future version |
| 30 | return !RuntimeModeSchema.safeParse(config.type).success; |
| 31 | } |
no outgoing calls
no test coverage detected