From 88a00335dcfc2f825ab4f464e292b755ffc31cc8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Luiz=20Gon=C3=A7alves?= <luiz.goncalves@ufpr.br>
Date: Mon, 11 Jul 2016 11:05:27 -0300
Subject: [PATCH] Add GitLab CI

---
 .gitlab-ci.yml | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..3171c9f7
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,12 @@
+stages:
+  - test
+
+before_script:
+  - npm install
+
+run_tests:
+  stage: test
+  script:
+    - npm test
+  tags:
+    - node
-- 
GitLab