aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-21 13:58:37 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-21 13:58:37 +0200
commitb9c7f5bfb5b4693b0644c01bd36500eb20e3f33a (patch)
treeb4eb9cfa3fcc10c73119787e50d62992199a3dda
parentb8778db93b9449492fa11cd3352f226d0ab76f4b (diff)
Move the cache to the global scope
-rw-r--r--.gitlab-ci.yml9
1 files 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