review-copilot
Version:
ReviewCopilot - AI-powered code review assistant with customizable prompts
15 lines (14 loc) • 410 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class EnvironmentHelpers {
static get isGitHubActions() {
return process.env.GITHUB_ACTIONS === 'true';
}
static get isGitLabCI() {
return process.env.GITLAB_CI === 'true';
}
static get isCI() {
return this.isGitHubActions || this.isGitLabCI;
}
}
exports.default = EnvironmentHelpers;