You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
receiving this error in my npm install pipeline when running an npm install task on Azure pipelines using the image: macOS-10.14. This step works fine if I run npm i from my local windows setup.
By searching through your issues, I found that this has happened in the past and was resolved. i.e. #307
170371 verbose stack Error: @sentry/cli@1.53.0 install: `node scripts/install.js`
170371 verbose stack Exit status 1
170371 verbose stack at EventEmitter.<anonymous> (/usr/local/Cellar/node@6/6.17.0/lib/node_modules/npm/lib/utils/lifecycle.js:255:16)
170371 verbose stack at emitTwo (events.js:106:13)
170371 verbose stack at EventEmitter.emit (events.js:191:7)
170371 verbose stack at ChildProcess.<anonymous> (/usr/local/Cellar/node@6/6.17.0/lib/node_modules/npm/lib/utils/spawn.js:40:14)
170371 verbose stack at emitTwo (events.js:106:13)
170371 verbose stack at ChildProcess.emit (events.js:191:7)
170371 verbose stack at maybeClose (internal/child_process.js:920:16)
170371 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:230:5)
The text was updated successfully, but these errors were encountered:
I was able to fix this by setting the version of node to 10.19.0. Probably doesn't have to be this version, but the version that Azure Pipelines was using by default was 6.17.0 and that definitely breaks the install. I verified this by setting my node version locally to 6.17.0 and getting the same errors on npm install step.
receiving this error in my npm install pipeline when running an npm install task on Azure pipelines using the image: macOS-10.14. This step works fine if I run
npm i
from my local windows setup.By searching through your issues, I found that this has happened in the past and was resolved. i.e. #307
The text was updated successfully, but these errors were encountered: