dryrun-ci
Version:
DryRun CI - Local GitLab CI/CD pipeline testing tool with Docker execution, performance monitoring, and security sandboxing
18 lines (17 loc) • 691 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SecurityLevel = exports.ExecutionMode = void 0;
var ExecutionMode;
(function (ExecutionMode) {
ExecutionMode["SIMULATE"] = "simulate";
ExecutionMode["DOCKER"] = "docker";
ExecutionMode["LOCAL"] = "local";
ExecutionMode["HYBRID"] = "hybrid";
ExecutionMode["GITLAB_RUNNER"] = "gitlab-runner";
})(ExecutionMode || (exports.ExecutionMode = ExecutionMode = {}));
var SecurityLevel;
(function (SecurityLevel) {
SecurityLevel["NONE"] = "NONE";
SecurityLevel["BASIC"] = "BASIC";
SecurityLevel["STRICT"] = "STRICT";
})(SecurityLevel || (exports.SecurityLevel = SecurityLevel = {}));