Code
Hub
Trending
Digest
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/CodebuffAI/codebuff
/ isCI
Function
isCI
common/src/env-ci.ts:33–36 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
31
* Check
if
running in CI environment
32
*/
33
export
const
isCI = (): boolean => {
34
const
env = getCiEnv()
35
return
env.CI ===
'true'
|| env.CI ===
'1'
|| env.GITHUB_ACTIONS ===
'true'
36
}
Callers
1
env-ci.test.ts
File · 0.90
Calls
1
getCiEnv
Function · 0.85
Tested by
no test coverage detected