X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/blobdiff_plain/b9c7f5bfb5b4693b0644c01bd36500eb20e3f33a..2897389d4ec9c56098356e3f4ad46ebb7b4f0070:/.gitlab-ci.yml?ds=inline diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 77acffd..fe65211 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,10 +19,11 @@ before_script: - npm install cache: - key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG" + key: ${CI_COMMIT_REF_SLUG} paths: - node_modules/ - .nyc_output/ + - .sonar/cache lint: <<: *only-default @@ -37,19 +38,13 @@ test: - npm test quality: + <<: *only-default 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 - only: - - merge_requests - - master