]> git.r.bdr.sh - rbdr/cologne/blobdiff - .gitlab-ci.yml
Add a License
[rbdr/cologne] / .gitlab-ci.yml
index 40bffadb6a71520646dbcc28db6dbc4bd3ab01c2..2432bbe30bcad43a3ad32ffef20d1f8b0705204d 100644 (file)
@@ -9,6 +9,7 @@ image: node:14
 
 variables:
   SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar"  # Defines the location of the analysis task cache
+  GIT_DEPTH: "0"
 
 stages:
   - lint
@@ -23,6 +24,7 @@ cache:
   paths:
     - node_modules/
     - .nyc_output/
+    - .sonar/cache
 
 lint:
   <<: *only-default
@@ -37,19 +39,13 @@ test:
     - npm test
 
 quality:
+  <<: *only-default
   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