X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/blobdiff_plain/0499d2037c5d4b0c9e5c3ce79a222b8fbd25b3a9..HEAD:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5823158..2432bbe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 @@ -19,10 +20,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 +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