X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/blobdiff_plain/69d552729f44a3713eceff8c46ee61b8508eb02b..bb6ef715dd399811609d88b85505bfd86786ec51:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cc95c38..2426cc0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,52 @@ +.only-default: &only-default + only: + - branches + - merge_requests + - tags + - refs + image: node:14 +variables: + SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache + stages: - lint - test + - quality before_script: - npm install +cache: + key: ${CI_COMMIT_REF_SLUG} + paths: + - node_modules/ + - .nyc_output/ + - .sonar/cache + lint: + <<: *only-default stage: lint script: - npm run lint test: + <<: *only-default stage: test script: - npm test + +quality: + stage: quality + needs: + - test + image: + name: sonarsource/sonar-scanner-cli:latest + entrypoint: [""] + script: + - npm run coverage + - sonar-scanner + only: + - merge_requests + - master