Skip to content

Commit

Permalink
fix(build): should run test on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
maxisam committed May 2, 2017
1 parent 4a81374 commit b428bae
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
sudo: false
sudo: required
language: node_js
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
cache:
directories:
- node_modules
Expand All @@ -11,10 +17,14 @@ notifications:
node_js:
- '6'
before_install:
- npm i -g npm@^4
- npm i -g npm@^4 -g
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
- npm prune
script:
- karma start
- npm run build
after_success:
- npm run semantic-release

0 comments on commit b428bae

Please sign in to comment.