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