* Parse a strict boolean env var. * @param {string | undefined} value * @returns {boolean | undefined}
(value)
| 151 | * @returns {boolean | undefined} |
| 152 | */ |
| 153 | function parseBooleanEnv(value) { |
| 154 | if (value === "true") return true; |
| 155 | if (value === "false") return false; |
| 156 | return undefined; |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Resolve the job name for conclusion spans. |
no outgoing calls
no test coverage detected