This is an automated email from the ASF dual-hosted git repository. willholley pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/couchdb-fauxton.git
commit 6135256c1f23f58a590c3a6140e5e90327cd01cb Author: Will Holley <[email protected]> AuthorDate: Mon Oct 14 09:06:08 2019 +0100 Add node 10 to the CI build CouchDB Docker images now use nodejs 10 by default. This commit updates Travis to use nodejs 10 when running integration tests. It also adds and `npm ls` check which will fail if there are unmet peer dependencies in package.json. --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index a5081cf..a6b3895 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,11 @@ language: node_js node_js: - - "8.9" + - "10" sudo: false services: - docker git: depth: 1 - env: - COUCHDB_IMAGE=apache/couchdb:2.3.1 NIGHTWATCH_SKIPTAGS="search,partitioned" - COUCHDB_IMAGE=couchdb:dev NIGHTWATCH_SKIPTAGS="search,nonpartitioned" @@ -21,6 +20,7 @@ before_script: - travis_retry ./bin/docker-up-and-check.sh - curl http://127.0.0.1:5984 - npm run stylecheck + - npm ls --production --depth=0 - npm test - grunt debugDev - DIST=./dist/debug ./bin/fauxton & @@ -29,7 +29,6 @@ script: - ./node_modules/.bin/grunt nightwatch_retries after_script: - npm run docker:down - cache: - apt - directories:
