Nuxt/.travis.yml
Sébastien Chopin 649365f4f6 Force npm3
2016-12-16 10:09:51 +01:00

16 lines
237 B
YAML

language: node_js
node_js:
- "7.2"
- "6.9"
- "5.12"
- "4.7"
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