468 B
468 B
CI/CD 流程
- 准备
- project information
- commit hash
- checkout
- install dependencies
- run test script
- run deploy script
- clear workspace
流水线任务单元描述
{
"version": 1,
"unit": {
"install-dependencies": {
"script": "npm ci"
},
"test": {
"script": "npm test"
},
"build": {
"script": "npm build"
},
"deploy": {
"script": [
"npm build"
]
}
}
}