gitlab-ci配置,管道卡在单元测试中

时间:2019-07-22 17:25:46

标签: reactjs gitlab-ci pipeline

预期

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

1 个答案:

答案 0 :(得分:1)

尝试从--watch中的test脚本中删除package.json标志。
我认为您不需要看CI工作。