Skip to content

Commit cbf2a49

Browse files
authored
Remove old broken CI tooling; run nyc as part of normal tests (#924)
* Remove old broken CI tooling; now that we've switched to GH Actions Refs #874 * Run nyc as part of normal tests
1 parent 8f79dcd commit cbf2a49

File tree

4 files changed

+4
-62
lines changed

4 files changed

+4
-62
lines changed

.travis.yml

-25
This file was deleted.

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ Node.js: fs-extra
44
`fs-extra` adds file system methods that aren't included in the native `fs` module and adds promise support to the `fs` methods. It also uses [`graceful-fs`](https://github.com/isaacs/node-graceful-fs) to prevent `EMFILE` errors. It should be a drop in replacement for `fs`.
55

66
[![npm Package](https://img.shields.io/npm/v/fs-extra.svg)](https://www.npmjs.org/package/fs-extra)
7-
[![License](https://img.shields.io/npm/l/express.svg)](https://github.com/jprichardson/node-fs-extra/blob/master/LICENSE)
8-
[![build status](https://img.shields.io/travis/jprichardson/node-fs-extra/master.svg)](http://travis-ci.org/jprichardson/node-fs-extra)
9-
[![windows Build status](https://img.shields.io/appveyor/ci/jprichardson/node-fs-extra/master.svg?label=windows%20build)](https://ci.appveyor.com/project/jprichardson/node-fs-extra/branch/master)
7+
[![License](https://img.shields.io/npm/l/fs-extra.svg)](https://github.com/jprichardson/node-fs-extra/blob/master/LICENSE)
8+
[![build status](https://img.shields.io/github/workflow/status/jprichardson/node-fs-extra/Node.js%20CI/master)](https://github.com/jprichardson/node-fs-extra/actions/workflows/ci.yml?query=branch%3Amaster)
109
[![downloads per month](http://img.shields.io/npm/dm/fs-extra.svg)](https://www.npmjs.org/package/fs-extra)
11-
[![Coverage Status](https://img.shields.io/coveralls/github/jprichardson/node-fs-extra/master.svg)](https://coveralls.io/github/jprichardson/node-fs-extra)
1210
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
1311

1412
Why?
@@ -189,7 +187,7 @@ you're gonna have to get over it :) If `standard` is good enough for `npm`, it's
189187
What's needed?
190188
- First, take a look at existing issues. Those are probably going to be where the priority lies.
191189
- More tests for edge cases. Specifically on different platforms. There can never be enough tests.
192-
- Improve test coverage. See coveralls output for more info.
190+
- Improve test coverage.
193191

194192
Note: If you make any big changes, **you should definitely file an issue for discussion first.**
195193

appveyor.yml

-27
This file was deleted.

package.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
},
4444
"devDependencies": {
4545
"at-least-node": "^1.0.0",
46-
"coveralls": "^3.0.0",
4746
"klaw": "^2.1.1",
4847
"klaw-sync": "^3.0.2",
4948
"minimist": "^1.1.1",
@@ -59,12 +58,9 @@
5958
"!lib/**/__tests__/"
6059
],
6160
"scripts": {
62-
"full-ci": "npm run lint && npm run coverage",
63-
"coverage": "nyc -r lcovonly npm run unit",
64-
"coveralls": "coveralls < coverage/lcov.info",
6561
"lint": "standard",
6662
"test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
6763
"test": "npm run lint && npm run unit",
68-
"unit": "node test.js"
64+
"unit": "nyc node test.js"
6965
}
7066
}

0 commit comments

Comments
 (0)