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
commit99148335c986afa9f59b556a21bb14dee0db2bc1 (patch)
tree583a8cd23659045756761bf534583a19d7250b70
parent59fae9f59d3be2f49a5cabc7164adfe3b1340a90 (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