Skip to content

Commit d824cfc

Browse files
committed
chore: Update Travis configuration to run Karma through Grunt
Running Grunt from within Travis allows us to lint the code in addition to firing off the standard suite of unit tests.
1 parent c322455 commit d824cfc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
language: node_js
22
node_js:
33
- "0.8"
4+
- "0.10"
45

56
before_install:
67
- export DISPLAY=:99.0
78
- sh -e /etc/init.d/xvfb start
8-
- npm install -g [email protected] bower
9+
- npm install -g karma bower grunt-cli
910
- bower install
11+
- npm install
1012

11-
script: "testacular start test/test.conf.js --browsers=Firefox,PhantomJS"
13+
script: "grunt"

0 commit comments

Comments
 (0)