diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb3c259..2e7b9ec 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,6 @@ + +# image: node:7.10.0 + stages: - setup # - test @@ -6,15 +9,17 @@ stages: - deploy cache: - untracked: true - key: "$CI_COMMIT_REF_NAME" paths: - node_modules/ setup: + image: node:7.10.0 stage: setup script: - npm install + artifacts: + paths: + - node_modules/ # test:unit: # image: node:7.10.0