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

Commit 66f2081

Browse files
authoredOct 22, 2020
chore: re-enable node 15 (#3339)
nodejs/node#35722 has been released so re-enable testing on node 15
1 parent e53d3f8 commit 66f2081

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ stages:
1515

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

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

4950
script:
5051
- npm run test:node -- $RUN_SINCE -- -- --timeout 10000 --bail

0 commit comments

Comments
 (0)