From 8f039ab3784bc2390d9855b6f43b3c981f83b11c Mon Sep 17 00:00:00 2001 From: Rubén Beltran del Río Date: Tue, 26 Jun 2018 05:23:00 +0000 Subject: Use Gitlab Pipelines Instead of Travis CI --- .gitlab-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 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..e0672f7 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +image: node:8 + +stages: + - lint + - build + +lint: + stage: lint + script: + - npm install + - npm run lint + +build: + stage: build + script: + - npm install + - npm run build -- cgit