npm:执行测试用例时,在gitlab-ci.yml文件中未发现错误

时间:2019-03-14 08:47:36

标签: javascript node.js gitlab gitlab-ci

我正在尝试测试我的nodeJs测试用例。

这是我的gitlab-ci.yml

test:
  type: test
  script:
    - npm run test

在执行CI / CD时出现此错误

  

/ bin / sh:eval:第117行:npm:找不到

如何解决此错误?

1 个答案:

答案 0 :(得分:2)

您应指定要使用node图片

test:
  image: node:10
  type: test
  script:
    - npm run test