From fff7207903464f7b394331b6ee20ae65bfc0644b Mon Sep 17 00:00:00 2001 From: Jonathan Cremin Date: Tue, 16 Feb 2016 15:21:38 +0000 Subject: [PATCH] Testing Gitlab CI runner --- .gitlab-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitlab-ci.yml 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