From b7c1ef59625e1aac926c03dcae1ea53b3035528a 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