我当前在Jenkins中运行一个节点项目,这是我遇到的错误。
Node Version
v10.15.0
NPM Version
6.4.1
Installing dependencies
npm ERR! cb() never called!
npm ERR! This is an error with npm itself. Please report this error at:
npm ERR! <https://npm.community>
npm ERR! A complete log of this run can be found in:
npm ERR! /var/lib/jenkins/.npm/_logs/2019-02-18T06_02_02_727Z-debug.log
Jenkins服务器安装了节点10.15.0
,并安装了npm 6.4.1
。
这是我的构建脚本:
echo "Node Version"
node --version
echo "NPM Version"
npm --version
echo "Installing dependencies"
npm install
我从StackOverflow npm ERR cb() never called的其他线程中看到了
可以通过在package.json中添加engines
来解决
我已经尝试添加此内容
"engines": {
"node": "10.15.0"
}
但仍然没有运气。