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-Url: https://git.r.bdr.sh/rbdr/cologne/commitdiff_plain/99148335c986afa9f59b556a21bb14dee0db2bc1?ds=sidebyside 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