标签: javascript node.js gitlab gitlab-ci
我正在尝试测试我的nodeJs测试用例。
这是我的gitlab-ci.yml
test: type: test script: - npm run test
在执行CI / CD时出现此错误
/ bin / sh:eval:第117行:npm:找不到
如何解决此错误?
答案 0 :(得分:2)
您应指定要使用node图片
node
test: image: node:10 type: test script: - npm run test