Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build!: moving to c8 for coverage and dropping Node 6 from build matrix #209

Merged
merged 2 commits into from Oct 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 10 additions & 3 deletions .travis.yml
Expand Up @@ -3,8 +3,15 @@ os:
- linux
- windows
node_js:
- "6"
- "8"
- "10"
- "node"
after_script: npm run coverage
- "12"
- "13"

jobs:
include:
- stage: coverage
node_js: "13"
script:
- npm t
- npm run coverage
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -4,9 +4,9 @@
"description": "the mighty option parser used by yargs",
"main": "index.js",
"scripts": {
"test": "nyc mocha test/*.js",
"test": "c8 --reporter=text --reporter=html mocha test/*.js",
"posttest": "standard",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage": "c8 report --reporter=text-lcov | coveralls",
"release": "standard-version"
},
"repository": {
Expand All @@ -26,10 +26,10 @@
"author": "Ben Coe <ben@npmjs.com>",
"license": "ISC",
"devDependencies": {
"c8": "^6.0.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^14.1.0",
"standard": "^12.0.1",
"standard-version": "^6.0.0"
},
Expand Down