From 1a870decc4bd3e6f300ad45d384f03aee0461acd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Victor=20Tozatti=20Risso?= <jvtr12@inf.ufpr.br>
Date: Mon, 5 Sep 2016 09:17:49 -0300
Subject: [PATCH] Update GitLab CI to run tests
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: João Victor Tozatti Risso <jvtr12@inf.ufpr.br>
---
 .gitlab-ci.yml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1a6d95ee..12a95c40 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,13 +2,14 @@ stages:
   - test
 
 before_script:
+  - npm install --global gulp gulp-cli babel babel-cli babel-core babel-register mocha
   - npm install
-  - npm install --global gulp-cli
-  - npm install --global mocha
 
 run_tests:
   stage: test
   script:
-    - gulp && cd build/ && mocha
+    - gulp
+    - cd build
+    - mocha
   tags:
     - node
-- 
GitLab