aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-21 13:32:25 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-21 13:32:25 +0200
commit56cee367db416581068c78bdf2fe38e1c3ac8cf4 (patch)
tree4a9563b7d9771a722de7406a0fb84aa59c34cccf /.gitlab-ci.yml
parent1db54b9b6a46877a7c5dd201dd124b609cd5fcf9 (diff)
Add sonar-cloud configuration
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cc95c38..9f8dbda 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,8 +1,12 @@
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
@@ -16,3 +20,19 @@ test:
stage: test
script:
- npm test
+
+quality:
+ 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
+