Skip to content

Commit

Permalink
travis: strict mode for Node 4
Browse files Browse the repository at this point in the history
  • Loading branch information
dex4er committed Jul 28, 2018
1 parent 8123d43 commit 7c86da2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .travis.yml
Expand Up @@ -9,16 +9,19 @@ env:
matrix:
include:
- node_js: "10"
env: NPM_RUN_SCRIPT=test
env: NPM_RUN_SCRIPT=test NPM_AUDIT=true TAP_ARGS="-- --node-arg=--pending-deprecation --node-arg=--throw-deprecation"
- node_js: "9"
- node_js: "8"
- node_js: "7"
- node_js: "6"
- node_js: "5"
env: TAP_ARGS=--strict
- node_js: "4"
env: TAP_ARGS=--strict

install:
- npm install
- if [ "$NPM_AUDIT" = true ]; then npm audit; fi

script:
- npm run ${NPM_RUN_SCRIPT:-test:api}
- npm run ${NPM_RUN_SCRIPT:-test:api} -- ${TAP_ARGS}
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,5 +1,5 @@
# Changelog

## v0.1.0 2018-07-25
## v0.1.0 2018-07-28

* Initial release

0 comments on commit 7c86da2

Please sign in to comment.