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 4ab4aed commit 9a8a136Copy full SHA for 9a8a136
.travis.yml
@@ -1,15 +1,19 @@
1
sudo: false
2
language: node_js
3
node_js:
4
+ - "10"
5
- "8"
6
- "6"
7
- "4"
8
- "0.12"
9
- "0.10"
-before_script:
10
- - sed -i 's/4.0.0-alpha.1/4.0.0/g' node_modules/gulp/package.json
11
after_script:
12
- - npm run coveralls
13
- - npm run lint
+ - if [ $(echo "${TRAVIS_NODE_VERSION}" | cut -d'.' -f1) -ge 6 ]; then
+ npm run coveralls;
+ fi
14
+
15
git:
16
depth: 10
17
+os:
18
+ - linux
19
+ - osx
appveyor.yml
@@ -9,6 +9,7 @@ environment:
- nodejs_version: "4"
- nodejs_version: "6"
- nodejs_version: "8"
+ - nodejs_version: "10"
install:
- npm install -g npm@^3
0 commit comments