]> git.r.bdr.sh - rbdr/cologne/blobdiff - .gitlab-ci.yml
Remove local cache from sonarcube
[rbdr/cologne] / .gitlab-ci.yml
index b64361cd24d4883153764c46ee75cc23a847e1af..2426cc0f368112f9521d6e01e15f8610b7de9ec1 100644 (file)
@@ -18,6 +18,13 @@ stages:
 before_script:
     - npm install
 
+cache:
+  key: ${CI_COMMIT_REF_SLUG}
+  paths:
+    - node_modules/
+    - .nyc_output/
+    - .sonar/cache
+
 lint:
   <<: *only-default
   stage: lint
@@ -27,23 +34,16 @@ lint:
 test:
   <<: *only-default
   stage: test
-  cache:
-    paths:
-      - .nyc_output/
   script:
     - npm test
 
 quality:
   stage: quality
   needs:
-    -test
+    - test
   image:
     name: sonarsource/sonar-scanner-cli:latest
     entrypoint: [""]
-  cache:
-    key: "${CI_JOB_NAME}"
-    paths:
-      - .sonar/cache
   script:
     - npm run coverage
     - sonar-scanner