diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..20aa5db --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,19 @@ +image: node:6-slim +services: + - mongo + +before_script: + - npm install + +test: + stage: test + script: + - npm test + tags: + - docker + +cache: + key: "$CI_BUILD_REF_NAME" + untracked: true + paths: + - node_modules