Nuxt/.travis.yml
Pooya Parsa 379fb753ca [ci] drop node<6
This is because jsdom no longer supports this environments
2017-04-30 02:47:28 +04:30

14 lines
216 B
YAML

language: node_js
node_js:
- "7.2"
- "6.9"
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
install:
- npm install
- npm run build
script:
- npm test
after_success:
- npm run coverage