Azure Pipeline 构建错误 Npm 失败,返回代码:4294963238

问题描述 投票:0回答:1

当我尝试构建如下解决方案时,出现 NPM 错误

144812 error Windows_NT 10.0.17763 
144813 error argv "C:\\hostedtoolcache\\windows\\node\\6.17.1\\x64\\node.exe"    "C:\\hostedtoolcache\\windows\\node\\6.17.1\\x64\\node_modules\\npm\\bin\\npm-cli.js" "install" 
144814 error node v6.17.1 
144815 error npm v3.10.10 
144816 error path D:\a\45\s\Presentation Tier\VendorPortal.Web.UI\node_modules\.staging\@types\node-b1eb4de5\package.json 
144817 error code ENOTDIR 
144818 error errno -4058 
144819 error syscall open 
144820 error ENOENT: no such file or directory, open 'D:\a\45\s\Presentation  Tier\VendorPortal.Web.UI\node_modules\.staging\@types\node-b1eb4de5\package.json' 
144821 error If you need help, you may report this error at: 
144821 error <https://github.com/npm/npm/issues> 
144822 verbose exit [ -4058, true ] 
##[error]Error: Npm failed with return code: 4294963238

我尝试删除 package-lock.json、npm 缓存清理命令、npm install npm@latest -g 一切。但我仍然收到错误。 NPM 安装步骤出现错误。

npm azure-devops azure-pipelines azure-pipelines-build-task
1个回答
0
投票

在您的管道中尝试并执行

npm 缓存清理 --force rm -rf ~/.npm

© www.soinside.com 2019 - 2024. All rights reserved.