From 2073125805162517c7b5a7e3ab3c96f35172c5f4 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 1 Oct 2018 15:12:54 +0200 Subject: [PATCH] Added gitlab config --- .gitlab-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..5c0f6536 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +image: node:8 + +before_script: + - yarn install + +cache: + paths: + - node_modules/ + +flow: + script: + - yarn run flow + +test:lint: + script: + - yarn run lint + +test:unit: + script: + - yarn run test