image: node:14
+variables:
+ SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache
+
stages:
- lint
- test
+ - quality
before_script:
- npm install
stage: test
script:
- npm test
+
+quality:
+ stage: "quality"
+ needs: ["test"]
+ image:
+ name: sonarsource/sonar-scanner-cli:latest
+ entrypoint: [""]
+ cache:
+ key: "${CI_JOB_NAME}"
+ paths:
+ - .sonar/cache
+ script:
+ - npm run coverage
+ - sonar-scanner
+ only:
+ - merge_requests
+ - master
+