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 80e164e commit b47ca80Copy full SHA for b47ca80
.travis.yml
@@ -0,0 +1,8 @@
1
+language: node_js
2
+node_js:
3
+ - '7'
4
+ - '6'
5
+ - '4'
6
+before_install:
7
+ - npm i -g npm
8
+after_success: npm run coveralls
appveyor.yml
@@ -0,0 +1,21 @@
+environment:
+ matrix:
+ - nodejs_version: '7'
+ - nodejs_version: '6'
+ - nodejs_version: '4'
+install:
+ - ps: Install-Product node $env:nodejs_version
+ - set CI=true
9
+ - npm -g install npm@latest
10
+ - set PATH=%APPDATA%\npm;%PATH%
11
+ - npm install
12
+matrix:
13
+ fast_finish: true
14
+build: off
15
+version: '{build}'
16
+shallow_clone: true
17
+clone_depth: 1
18
+test_script:
19
+ - node --version
20
+ - npm --version
21
+ - npm test
0 commit comments