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

Improved ci #9

Merged
merged 4 commits into from
Dec 24, 2015
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
sudo: false
language: node_js

node_js:
- "0.10"
- "0.12"
- iojs
- "iojs"
- "4"
- "5"

cache:
directories:
- node_modules

after_script:
npm run coveralls
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# fastfall  [![Build Status](https://travis-ci.org/mcollina/fastfall.svg?branch=master)](https://travis-ci.org/mcollina/fastfall)
# fastfall

[![npm version][npm-badge]][npm-url]
[![Build Status][travis-badge]][travis-url]
[![Coverage Status][coveralls-badge]][coveralls-url]
[![Dependency Status][david-badge]][david-url]

call your callbacks in a waterfall, without overhead
## call your callbacks in a waterfall, without overhead

Benchmark for doing 3 calls `setImmediate` 100 thousands times:

Expand Down Expand Up @@ -216,3 +220,13 @@ function, too. Calls `done` when it has finished.
## License

MIT


[npm-badge]: https://badge.fury.io/js/fastfall.svg
[npm-url]: https://badge.fury.io/js/fastfall
[travis-badge]: https://api.travis-ci.org/mcollina/fastfall.svg
[travis-url]: https://travis-ci.org/mcollina/fastfall
[coveralls-badge]:https://coveralls.io/repos/mcollina/fastfall/badge.svg?branch=master&service=github
[coveralls-url]: https://coveralls.io/github/mcollina/fastfall?branch=master
[david-badge]: https://david-dm.org/mcollina/fastfall.svg
[david-url]: https://david-dm.org/mcollina/fastfall
12 changes: 10 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"main": "fall.js",
"scripts": {
"lint": "standard",
"test": "tape test.js | faucet"
"test": "tape test.js | faucet",
"coverage": "istanbul cover tape test.js | tap-spec",
"coveralls": "npm run coverage ; cat ./coverage/lcov.info | coveralls"
},
"precommit": [
"lint",
Expand All @@ -28,15 +30,21 @@
"url": "https://github.com/mcollina/fastfall/issues"
},
"homepage": "https://github.com/mcollina/fastfall#readme",
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"async": "^1.0.0",
"coveralls": "^2.11.6",
"fastbench": "^1.0.0",
"faucet": "0.0.1",
"insync": "^1.0.0",
"insync": "^2.1.1",
"istanbul": "^0.4.1",
"neo-async": "^1.7.0",
"pre-commit": "^1.0.10",
"run-waterfall": "^1.1.1",
"standard": "^5.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.0.0",
"waterfallize": "^1.0.0"
},
Expand Down