Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Oct 30, 2024. It is now read-only.

Commit a317c50

Browse files
committed
Add travis/coveralls support
1 parent e5fe771 commit a317c50

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

.travis.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
language: node_js
2+
node_js:
3+
- "0.11"
4+
- "0.12"
5+
- "4"
6+
- "5"
7+
env:
8+
- CXX=g++-4.8
9+
addons:
10+
apt:
11+
sources:
12+
- ubuntu-toolchain-r-test
13+
packages:
14+
- g++-4.8
15+
env:
16+
matrix:
17+
- CXX=g++-4.8 TEST_SUITE=test
18+
matrix:
19+
fast_finish: true
20+
include:
21+
- os: linux
22+
node_js: "4"
23+
env: CXX=g++-4.8 TEST_SUITE=coveralls
24+
- os: linux
25+
node_js: "4"
26+
env: CXX=g++-4.8 TEST_SUITE=lint
27+
script: npm run $TEST_SUITE

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# ethereumjs-wallet
22

3+
[![NPM Package](https://img.shields.io/npm/v/ethereumjs-wallet.svg?style=flat-square)](https://www.npmjs.org/package/ethereumjs-wallet)
4+
[![Build Status](https://img.shields.io/travis/ethereumjs/ethereumjs-wallet.svg?branch=master&style=flat-square)](https://travis-ci.org/ethereumjs/ethereumjs-wallet)
5+
[![Coverage Status](https://img.shields.io/coveralls/ethereumjs/ethereumjs-wallet.svg?style=flat-square)](https://coveralls.io/r/ethereumjs/ethereumjs-wallet)
6+
[![Gitter](https://img.shields.io/gitter/room/ethereum/ethereumjs-lib.svg?style=flat-square)](https://gitter.im/ethereum/ethereumjs-lib) or #ethereumjs on freenode
7+
38
A lightweight wallet implementation. At the moment it supports key creation and conversion between various formats.
49

510
It is complemented by the following packages:

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"coverage": "istanbul cover _mocha",
8+
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
89
"lint": "standard",
910
"prepublish": "npm run lint && npm run test",
1011
"test": "mocha ./test/**/*.js"
@@ -35,6 +36,7 @@
3536
"utf8": "^2.1.1"
3637
},
3738
"devDependencies": {
39+
"coveralls": "^2.11.4",
3840
"istanbul": "^0.4.1",
3941
"mocha": "^2.3.4",
4042
"standard": "^5.4.1"

0 commit comments

Comments
 (0)