File tree 2 files changed +27
-1
lines changed
2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ node_js:
11
11
notifications :
12
12
email : false
13
13
14
- after_success : npm run report-coverage
14
+ after_success : bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change
1
+ environment :
2
+ matrix :
3
+ # node.js
4
+ - nodejs_version : " 7"
5
+ - nodejs_version : " 6"
6
+ - nodejs_version : " 4"
7
+ - nodejs_version : " 0.12"
8
+ - nodejs_version : " 0.10"
9
+
10
+ # Install scripts. (runs after repo cloning)
11
+ install :
12
+ # Get the latest stable version of Node.js or io.js
13
+ - ps : Install-Product node $env:nodejs_version
14
+ # install modules
15
+ - npm install
16
+
17
+ # Post-install test scripts.
18
+ test_script :
19
+ # Output useful info for debugging.
20
+ - node --version
21
+ - npm --version
22
+ # run tests
23
+ - npm test
24
+
25
+ # Don't actually build.
26
+ build : off
You can’t perform that action at this time.
0 commit comments