From 26e125347ab81afa01ecaeb8017c7ce53be19a84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=86ndrew=20Rininsland?= Date: Mon, 2 May 2016 11:28:08 +0100 Subject: [PATCH] Updated .travis.yml to do a full build The current Travis config won't ever pass newly-added unit tests because it doesn't do an actual build from the updated source files. This just replaces the ```- npm run lint - npm test``` lines with `grunt`. --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1b447bd..bfb99cb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,8 +5,7 @@ before_script: - gem install sass script: -- npm run lint -- npm test +- grunt after_success: - npm run codecov