(input: unknown)
| 203 | // Signal handlers will be registered in setup() to avoid test pollution |
| 204 | |
| 205 | export function isBooleanString(input: unknown): input is "true" | "false" { |
| 206 | return typeof input === "string" && (input === "true" || input === "false"); |
| 207 | } |
| 208 | export function validateRequiredFields(answers: SetupAnswers): void { |
| 209 | const requiredFields: SetupKey[] = [ |
| 210 | "CI", |
no outgoing calls
no test coverage detected