您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。
|
- cache:
- key: "$CI_JOB_NAME"
- untracked: true
- paths:
- - node_modules/
-
- before_script:
- - npm install
-
- .test_template: &npm_test
- script:
- - npm run lint
- - npm test
-
- test:node4:
- image: node:4
- <<: *npm_test
-
- test:node6:
- image: node:6
- <<: *npm_test
-
- test:node8:
- image: node:8
- <<: *npm_test
-
- test:node10:
- image: node:10
- <<: *npm_test
|