fennec-be/docs/ci-cd.md

468 B

CI/CD 流程

  1. 准备
  • project information
  • commit hash
  1. checkout
  2. install dependencies
  3. run test script
  4. run deploy script
  5. clear workspace

流水线任务单元描述

{
  "version": 1,
  "unit": {
    "install-dependencies": {
      "script": "npm ci"
    },
    "test": {
      "script": "npm test"
    },
    "build": {
      "script": "npm build"
    },
    "deploy": {
      "script": [
        "npm build"
      ]
    }
  }
}