面对最新声纳扫描仪找不到 npm 的问题

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

enter image description here最近我们更新了声纳扫描仪图像

在 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     
sonarqube gitlab-ci sonarqube-scan sonar-runner
1个回答
0
投票

在你的脚本中你需要添加:

- apk add --no-cache chromium
- apk add --update nodejs npm
© www.soinside.com 2019 - 2024. All rights reserved.