aboutsummaryrefslogblamecommitdiffhomepage
path: root/.travis.yml
blob: 15c7ce79c496400c61d8f88c21b33073e8ea7768 (plain) (tree)































                                                                                            
language: node_js

notifications:
  email:
  - yiminghe@gmail.com

node_js:
- 4.0.0

before_install:
- |
    if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.md$)|(^(docs|examples))/'
    then
      echo "Only docs were updated, stopping build process."
      exit
    fi
    npm install mocha-phantomjs -g
    phantomjs --version

script:
- |
    if [ "$TEST_TYPE" = test ]; then
      npm test
    else
      npm run $TEST_TYPE
    fi

env:
  matrix:
  - TEST_TYPE=lint
  - TEST_TYPE=browser-test
  - TEST_TYPE=browser-test-cover