From 6d3bc636a8daa89b105a3080fb92d656af5319e7 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Sun, 18 Mar 2018 20:55:58 +0100 Subject: [PATCH] add GitLab CI --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..2452900 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +image: node + +cache: + paths: + - node_modules/ + +testing: + stage: test + script: + - npm install + - npm test + - npm run build