在 sonar app 阶段,面临这个 npm not find 问题 npm:找不到命令
我的声纳应用程序阶段就像
sonar-app:
<<: *tpl_build_gcp
stage: sonar_audit
image:
name: sonar-scanner-cli:latest-release
entrypoint: [""]
script:
- apk add --no-cache chromium
- export CHROME_BIN=/usr/bin/chromium-browser
- cd app
- ls
- npm install --legacy-peer-deps
- npm run unit-test
- ls
- sonar-scanner -Dsonar.host.url=${SONAR_HOST_URL} -Dsonar.login=${SONAR_TOKEN} -Dsonar.projectKey=application/path -Dsonar.sources=src
在你的脚本中你需要添加:
- apk add --no-cache chromium
- apk add --update nodejs npm