Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump travis node dependency to 8 to fix build #417

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dist: trusty
language: node_js

node_js:
- "6"
- "8"

sudo: false

Expand Down
7 changes: 3 additions & 4 deletions bin/test-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@ DIRECTORY='pouchdb-tests'

if [ ! -d "$DIRECTORY" ]; then
# Control will enter here if $DIRECTORY exists.
git clone --single-branch --branch master \
--depth 500 \
https://github.com/pouchdb/pouchdb.git ${DIRECTORY}
git clone https://github.com/pouchdb/pouchdb.git ${DIRECTORY}
fi

cd "$DIRECTORY"
git checkout de54c62f99d028593059e615b5702131864b6dd4 # 6.4.1
git fetch
git checkout de99825a418bb5ee62c5feafd0046c217941fa9e # 7.0.0
npm install
cd ..