From: Ruben Beltran del Rio Date: Mon, 21 Sep 2020 11:58:37 +0000 (+0200) Subject: Move the cache to the global scope X-Git-Tag: v2.0.1^2~6 X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/commitdiff_plain/b9c7f5bfb5b4693b0644c01bd36500eb20e3f33a?ds=inline Move the cache to the global scope --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b64361c..77acffd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,6 +18,12 @@ stages: before_script: - npm install +cache: + key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG" + paths: + - node_modules/ + - .nyc_output/ + lint: <<: *only-default stage: lint @@ -27,9 +33,6 @@ lint: test: <<: *only-default stage: test - cache: - paths: - - .nyc_output/ script: - npm test