Skip to content

Commit

Permalink
Add .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
asweeney86 committed Feb 22, 2018
1 parent 06b2176 commit 0df20ba
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
language: node_js

node_js:
- "8"

sudo: false

branches:
only:
- master

before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"

cache:
yarn: true
directories:
- ".eslintcache"
- "node_modules"

script:
- yarn lint
- yarn jest --coverage

0 comments on commit 0df20ba

Please sign in to comment.