您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314
  1. pipeline:
  2. build:
  3. image: node:${NODE_VERSION}
  4. commands:
  5. - npm install
  6. - npm run test
  7. matrix:
  8. NODE_VERSION:
  9. - latest
  10. - "8"
  11. - "7"
  12. - "6"
  13. - "4"