Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

chore: re-enable node 15 #3339

Merged
merged 2 commits into from Oct 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -15,8 +15,7 @@ stages:

node_js:
- 'lts/*'
# node 15 is broken until the fix for https://github.com/nodejs/node/issues/35722 is released
# - 'node'
- 'node'

os:
- linux
Expand Down Expand Up @@ -45,6 +44,8 @@ before_install:
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then export PATH=/c/PROGRA~1/Git/usr/bin:/c/PROGRA~1/Git/mingw64/libexec/git-core:$PATH ; fi
# only run jobs in packages that have changed since master in PR builds
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then export RUN_SINCE='--since master' ; fi
# modules with pre-built binaries may not have deployed versions for bleeding-edge node so this lets us fall back to building from source
- npm install -g node-pre-gyp

script:
- npm run test:node -- $RUN_SINCE -- -- --timeout 10000 --bail
Expand Down