feat(pipeline-tasks): 流水线人物。

This commit is contained in:
Ivan
2021-03-01 18:14:13 +08:00
parent e3e698b8cb
commit 22d9bf47d3
13 changed files with 223 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export enum PipelineUnits {
checkout = 'checkout',
installDependencies = 'installDependencies',
test = 'test',
deploy = 'deploy',
cleanUp = 'cleanUp',
}

View File

@@ -0,0 +1,6 @@
export enum TaskStatuses {
success = 'success',
failed = 'failed',
working = 'working',
pending = 'pending',
}