From 99148335c986afa9f59b556a21bb14dee0db2bc1 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 21 Sep 2020 13:58:37 +0200 Subject: Move the cache to the global scope --- .gitlab-ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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 -- cgit