Skip to content

Commit ba57b53

Browse files
author
Tyler Brandt
authored
chore(ci): replace node target with v9/v10.0 (#101)
Travis is erroring ([example](https://travis-ci.org/optimizely/javascript-sdk/jobs/380942404)) when the "node" or "10" target is given, but the tests are passing with node 10 (at least on my machine). Update "node" targets to "9"/"10.0" until this is resolved. ``` $ node --version v10.0.0 $ npm run test-travis > @optimizely/[email protected] test-travis /Users/tbrandt/optly/Projects/javascript-sdk/packages/optimizely-sdk > npm run test && grunt ... 362 passing (653ms) ``` Mitigation for #102
1 parent 7988063 commit ba57b53

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ node_js:
33
- '4'
44
- '6'
55
- '8'
6-
- node
6+
- '9'
7+
# TODO(#102): restore node/10 config
8+
- '10.0'
79
branches:
810
only:
911
- master

0 commit comments

Comments
 (0)