gitlab-ci config在管道中运行测试并完成
测试永远运行,流水线永远不会结束
Project是一个ReactJS / Jest前端应用程序: https://gitlab.com/futuratum/moon.holdings
已暂停的管道:https://gitlab.com/futuratum/moon.holdings/pipelines/72013854
build site:
image: node:10
stage: build
script:
- npm install --progress=false
- npm run build
artifacts:
expire_in: 1 week
paths:
- dist
unit test:
image: node:10
stage: test
script:
- npm install --progress=false
- npm run test
答案 0 :(得分:1)
尝试从--watch
中的test
脚本中删除package.json
标志。
我认为您不需要看CI工作。