Skip to content

Commit

Permalink
ci(travis): add Windows (#35)
Browse files Browse the repository at this point in the history
* ci(travis): add node 12 & 13

* ci(travis): drop deprecated sudo option

* ci(travis): add Windows
  • Loading branch information
curbengh authored and tomap committed Dec 23, 2019
1 parent 12074b2 commit 42468d5
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
language: node_js
os:
- linux
- windows

sudo: false
language: node_js

cache:
npm: true

node_js:
- "8"
- "10"
- "node"
- "12"
- "13"

script:
- npm run eslint
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then
npm run eslint;
fi
- npm run test-cov

after_script:
Expand Down

0 comments on commit 42468d5

Please sign in to comment.