X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/blobdiff_plain/56cee367db416581068c78bdf2fe38e1c3ac8cf4..b9c7f5bfb5b4693b0644c01bd36500eb20e3f33a:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9f8dbda..77acffd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,10 @@ +.only-default: &only-default + only: + - branches + - merge_requests + - tags + - refs + image: node:14 variables: @@ -11,17 +18,28 @@ stages: before_script: - npm install +cache: + key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG" + paths: + - node_modules/ + - .nyc_output/ + 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: [""] @@ -35,4 +53,3 @@ quality: only: - merge_requests - master -