Skip to content

Commit accde2a

Browse files
committed
ci: add all the versions for browserify
1 parent d7f9908 commit accde2a

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

.travis.yml

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
language: node_js
2+
os: linux
23
node_js:
3-
- "8"
4-
- "10"
4+
- "14"
5+
- "13"
56
- "12"
7+
- "11"
8+
- "10"
9+
- "9"
10+
- "8"
11+
- "6"
12+
- "4"
13+
- "iojs"
14+
- "0.12"
15+
- "0.10"
16+
- "0.8"
17+
- "0.6"
18+
before_install:
19+
# Old npm certs are untrusted https://github.com/npm/npm/issues/20191
20+
- 'if [ "${TRAVIS_NODE_VERSION}" = "0.6" ] || [ "${TRAVIS_NODE_VERSION}" = "0.8" ]; then export NPM_CONFIG_STRICT_SSL=false; fi'
21+
- 'nvm install-latest-npm'
22+
install:
23+
- 'if [ "${TRAVIS_NODE_VERSION}" = "0.6" ] || [ "${TRAVIS_NODE_VERSION}" = "0.9" ]; then nvm install --latest-npm 0.8 && npm install && nvm use "${TRAVIS_NODE_VERSION}"; else npm install; fi;'
24+
sudo: false
25+
matrix:
26+
fast_finish: true
27+
allow_failures:
28+
- node_js: "0.6"

0 commit comments

Comments
 (0)