MCPcopy Index your code
hub / github.com/MiniMax-AI/cli / isCI

Function isCI

src/utils/env.ts:29–38  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

27 * Detects whether the current process is running in a CI environment.
28 */
29export function isCI(): boolean {
30 return !!(
31 process.env.CI ||
32 process.env.GITHUB_ACTIONS ||
33 process.env.GITLAB_CI ||
34 process.env.JENKINS_URL ||
35 process.env.TRAVIS ||
36 process.env.CIRCLECI
37 );
38}

Callers 1

env.test.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected