diff options
| author | Rubén Beltran del Río <954000-rbdr@users.noreply.gitlab.com> | 2020-09-21 13:14:32 +0000 |
|---|---|---|
| committer | Rubén Beltran del Río <954000-rbdr@users.noreply.gitlab.com> | 2020-09-21 13:14:32 +0000 |
| commit | 25d80f4c0007d891a806364865c8e3edb215034e (patch) | |
| tree | f318978e262a3c9e66b14040a9ed96b26d009788 /.gitlab-ci.yml | |
| parent | 4297c91b0abdb304b9be8b0b3cdbc75b5d06db1f (diff) | |
| parent | 2897389d4ec9c56098356e3f4ad46ebb7b4f0070 (diff) | |
Merge branch 'rbdr-address-sonarqube-issues' into 'master'v2.0.1
Integrate Sonarcloud
See merge request rbdr/cologne!1
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cc95c38..fe65211 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,50 @@ +.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: + <<: *only-default + stage: quality + needs: + - test + image: + name: sonarsource/sonar-scanner-cli:latest + entrypoint: [""] + script: + - npm run coverage + - sonar-scanner |