Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
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
13 changes: 12 additions & 1 deletion 13 .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,19 @@ before_install:
export JOBS=4;
fi

# node 0.12 is sometimes failing
# with a "Callback called more than once" error
# Despite that error, it seems like modules do get installed correctly,
# and the rest of the build proceeds as normal.
# So we ignore that error, just for node 0.12
# If npm install ever fails in a more significant way,
# the rest of the build should hopefully fail anyway.
install:
- npm install
- if [[ $NODE_VERSION == "0.12" ]]; then
npm install || true;
else
npm install;
fi

# This is a random private key used purely for testing.
before_script:
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.