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