singularci
Version:
SingularCI is a DSL transpiler used to generate CI/CD configuration files for existing CI platforms
10 lines • 411 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TaskType = void 0;
var TaskType;
(function (TaskType) {
TaskType[TaskType["BuildDockerImage"] = 0] = "BuildDockerImage";
TaskType[TaskType["Checkout"] = 1] = "Checkout";
TaskType[TaskType["Run"] = 2] = "Run";
})(TaskType = exports.TaskType || (exports.TaskType = {}));
//# sourceMappingURL=TaskEnum.js.map