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 49e4786 commit cdfea70Copy full SHA for cdfea70
.gitignore
@@ -4,3 +4,4 @@ npm-debug.log
4
coverage
5
.idea
6
test/tmp
7
+.nyc_output
.travis.yml
@@ -1,12 +1,12 @@
1
language: node_js
2
node_js:
3
- - 6
- - 8
- 10
- 12
+ - 14
before_install:
8
- npm install -g npm@latest
9
- - npm install -g greenkeeper-lockfile@1
10
-before_script: greenkeeper-lockfile-update
11
-after_script: greenkeeper-lockfile-upload
12
-script: npm run lint && npm run test-coveralls
+script:
+ - npm run lint
+ - npm run test
+after_success:
+ - npm run coverage
0 commit comments