以下命令显示错误
stage ('Install')
{
steps
{
sh 'npm install --force'}
stage('Build')
{steps {
sh " npm build -- --configuration=uat --baseHref=. --build-optimizer=true"
}
}
并且无法在jenkins管道中使用以下sh命令进行构建。但是可以在詹金斯中运行命令
我尝试使用npm install,npm run install。