From fd38d4096e65ba5afba8ed1ddc75ed1814ca8c16 Mon Sep 17 00:00:00 2001 From: Rubén Beltran del Río Date: Tue, 26 Jun 2018 22:00:10 +0000 Subject: Update Documentation --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..fcf1760 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +image: node:8 + +stages: + - lint + +before_script: + - npm install + +lint: + stage: lint + script: + - npm run lint -- cgit