X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/blobdiff_plain/b8778db93b9449492fa11cd3352f226d0ab76f4b..7f09137eef061ba4eddb855bc6aeae3f8e9f8015:/.gitlab-ci.yml?ds=inline diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b64361c..2426cc0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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