()
| 8 | } from '@code-pushup/models'; |
| 9 | |
| 10 | export function isCI() { |
| 11 | return isEnvVarEnabled('CI'); |
| 12 | } |
| 13 | |
| 14 | export function isEnvVarEnabled(name: string): boolean { |
| 15 | const value = coerceBooleanValue(process.env[name]); |
nothing calls this directly
no test coverage detected