Skip to content
This repository was archived by the owner on Feb 26, 2021. It is now read-only.

Commit 6745a6b

Browse files
vasco-santosjacobheun
authored andcommitted
chore: add discourse badge (#77)
1 parent b68ae9f commit 6745a6b

File tree

4 files changed

+55
-10
lines changed

4 files changed

+55
-10
lines changed

.travis.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
language: node_js
2+
cache: npm
3+
stages:
4+
- check
5+
- test
6+
- cov
7+
8+
node_js:
9+
- '10'
10+
11+
os:
12+
- linux
13+
- osx
14+
15+
script: npx nyc -s npm run test:node -- --bail
16+
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
17+
18+
jobs:
19+
include:
20+
- os: windows
21+
cache: false
22+
23+
- stage: check
24+
script:
25+
- npx aegir commitlint --travis
26+
- npx aegir dep-check
27+
- npm run lint
28+
29+
- stage: test
30+
name: chrome
31+
addons:
32+
chrome: stable
33+
script:
34+
- npx aegir test -t browser
35+
- npx aegir test -t webworker
36+
37+
- stage: test
38+
name: firefox
39+
addons:
40+
firefox: latest
41+
script:
42+
- npx aegir test -t browser -- --browsers FirefoxHeadless
43+
- npx aegir test -t webworker -- --browsers FirefoxHeadless
44+
45+
notifications:
46+
email: false

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# js-peer-info
22

3-
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io)
4-
[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs)
5-
[![Build Status](https://travis-ci.org/libp2p/js-peer-info.svg?style=flat-square)](https://travis-ci.org/libp2p/js-peer-info)
6-
[![Coverage Status](https://coveralls.io/repos/github/libp2p/js-peer-info/badge.svg?branch=master)](https://coveralls.io/github/libp2p/js-peer-info?branch=master)
3+
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://protocol.ai)
4+
[![](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
5+
[![](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)
6+
[![Discourse posts](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg)](https://discuss.libp2p.io)
7+
[![](https://img.shields.io/codecov/c/github/libp2p/js-peer-info.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-peer-info)
8+
[![](https://img.shields.io/travis/libp2p/js-peer-info.svg?style=flat-square)](https://travis-ci.com/libp2p/js-peer-info)
79
[![Dependency Status](https://david-dm.org/libp2p/js-peer-info.svg?style=flat-square)](https://david-dm.org/libp2p/js-peer-info)
810
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)
9-
[![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)
1011
![](https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square)
1112
![](https://img.shields.io/badge/Node.js-%3E%3D6.0.0-orange.svg?style=flat-square)
1213

ci/Jenkinsfile

Lines changed: 0 additions & 2 deletions
This file was deleted.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
"bugs": "https://github.com/libp2p/js-peer-info/issues",
3434
"homepage": "https://github.com/libp2p/js-peer-info",
3535
"devDependencies": {
36-
"aegir": "^18.0.3",
36+
"aegir": "^18.2.2",
3737
"buffer-loader": "0.1.0",
3838
"bundlesize": "~0.17.0",
3939
"chai": "^4.2.0",
4040
"dirty-chai": "^2.0.1"
4141
},
4242
"dependencies": {
43-
"mafmt": "^6.0.2",
44-
"multiaddr": "^6.0.3",
43+
"mafmt": "^6.0.7",
44+
"multiaddr": "^6.0.6",
4545
"peer-id": "~0.12.2",
4646
"unique-by": "^1.0.0"
4747
},

0 commit comments

Comments
 (0)