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 | 59fae9f59d3be2f49a5cabc7164adfe3b1340a90 (patch) | |
| tree | d8dd940e3ab9e9dfc76294312835ab7d499bd0b4 | |
| parent | 9fabdd3292b6f065f551f7058f1cb1411097e258 (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: [""] |