We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7af3a7 commit 5984745Copy full SHA for 5984745
.travis.yml
@@ -1,6 +1,33 @@
1
+sudo: false
2
+
3
+env:
4
+ - CXX=g++-4.8
5
+addons:
6
+ apt:
7
+ sources:
8
+ - ubuntu-toolchain-r-test
9
+ packages:
10
+ - g++-4.8
11
12
language: node_js
13
14
node_js:
15
- "0.8"
16
- "0.10"
- - "0.11"
17
- "0.12"
18
+ - "iojs-v2.5"
19
+ - "iojs-v3"
20
21
+install:
22
+ - PATH="`npm bin`:`npm bin -g`:$PATH"
23
+ # Node 0.8 comes with a too obsolete npm
24
+ - if [[ "`node --version`" =~ ^v0\.8\. ]]; then npm install -g [email protected] ; fi
25
+ # Install dependencies and build
26
+ - npm install
27
28
+script:
29
+ # Output useful info for debugging
30
+ - node --version
31
+ - npm --version
32
+ # Run tests
33
+ - npm test
0 commit comments