Browse Source

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`.
pull/1679/head
Ændrew Rininsland 9 years ago
parent
commit
26e125347a
  1. 3
      .travis.yml

3
.travis.yml

@ -5,8 +5,7 @@ before_script:
- gem install sass - gem install sass
script: script:
- npm run lint - grunt
- npm test
after_success: after_success:
- npm run codecov - npm run codecov

Loading…
Cancel
Save