diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-09-21 13:56:23 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-09-21 13:56:23 +0200 |
| commit | b8778db93b9449492fa11cd3352f226d0ab76f4b (patch) | |
| tree | f1312c6ef3e021394c7a5747665f9566f06dfc1a | |
| parent | 6a4e70007b1256a8a695ad303669f91125de4351 (diff) | |
Cache the nyc_output dir
| -rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6c94c32..b64361c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,12 +27,16 @@ lint: test: <<: *only-default stage: test + cache: + paths: + - .nyc_output/ script: - npm test quality: - stage: "quality" - needs: ["test"] + stage: quality + needs: + -test image: name: sonarsource/sonar-scanner-cli:latest entrypoint: [""] |