Merge pull request #93 from netlify/travis-ci

Add support for Travis CI
This commit is contained in:
Andrey Okonetchnikov 2016-10-05 18:05:05 +02:00 committed by GitHub
commit e629fb3b20
2 changed files with 5 additions and 2 deletions

3
.travis.yml Normal file
View File

@ -0,0 +1,3 @@
language: node_js
node_js:
- "6.0"

View File

@ -5,8 +5,8 @@
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"test": "NODE_ENV=test jest",
"test:watch": "npm test -- --watch",
"test": "NODE_ENV=test npm run lint && jest",
"test:watch": "NODE_ENV=test jest --watch",
"build": "webpack --config webpack.config.js",
"storybook": "start-storybook -p 9001",
"storybook-build": "build-storybook -o dist",