Skip to content

Commit

Permalink
Test with Node 13.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
igoramadas committed Feb 18, 2020
1 parent 65011f9 commit 357a93e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
sudo: false
language: node_js
node_js:
- "13.6"
- "12.14"
- "10.16"
- "13.9"
- "12.14"
- "10.16"
after_success:
- "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
- "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ TYPEDOC:= ./node_modules/.bin/typedoc
TSC:= ./node_modules/.bin/tsc

test:
tsc
$(TSC)
@NODE_ENV=test $(MOCHA) --trace-warnings --exit -u tdd -R spec

test-cover:
tsc
$(TSC)
echo TRAVIS_JOB_ID $(TRAVIS_JOB_ID)
@NODE_ENV=test $(ISTANBUL) $(MOCHAEXEC) --exit --report lcovonly -R spec && \
cat ./coverage/lcov.info | $(COVERALLS) || true

cover:
tsc
$(TSC)
@NODE_ENV=test $(ISTANBUL) $(MOCHAEXEC) --exit -R spec ./test/*.js

docs:
Expand Down

0 comments on commit 357a93e

Please sign in to comment.