Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.

Commit 83475bd

Browse files
vasco-santosjacobheun
authored andcommittedApr 15, 2019
chore: add discourse badge (#83)
1 parent 18885e9 commit 83475bd

File tree

4 files changed

+51
-8
lines changed

4 files changed

+51
-8
lines changed
 

‎.travis.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
- stage: check
21+
script:
22+
- npx aegir commitlint --travis
23+
- npx aegir dep-check -- -i wrtc -i electron-webrtc
24+
- npm run lint
25+
26+
- stage: test
27+
name: chrome
28+
addons:
29+
chrome: stable
30+
script:
31+
- npx aegir test -t browser
32+
33+
- stage: test
34+
name: firefox
35+
addons:
36+
firefox: latest
37+
script:
38+
- npx aegir test -t browser -- --browsers FirefoxHeadless
39+
40+
notifications:
41+
email: false

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io)
44
[![](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](http://ipfs.io/)
55
[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs)
6+
[![Discourse posts](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg)](https://discuss.libp2p.io)
67
[![Coverage Status](https://coveralls.io/repos/github/libp2p/js-libp2p-websockets/badge.svg?branch=master)](https://coveralls.io/github/libp2p/js-libp2p-websockets?branch=master)
78
[![Travis CI](https://travis-ci.org/libp2p/js-libp2p-websockets.svg?branch=master)](https://travis-ci.org/libp2p/js-libp2p-websockets)
89
[![Circle CI](https://circleci.com/gh/libp2p/js-libp2p-websockets.svg?style=svg)](https://circleci.com/gh/libp2p/js-libp2p-websockets)

‎package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,19 @@
4242
"dependencies": {
4343
"class-is": "^1.1.0",
4444
"debug": "^4.1.1",
45-
"interface-connection": "~0.3.2",
46-
"mafmt": "^6.0.4",
45+
"interface-connection": "~0.3.3",
46+
"mafmt": "^6.0.7",
4747
"multiaddr-to-uri": "^4.0.1",
4848
"pull-ws": "hugomrdias/pull-ws#fix/bundle-size"
4949
},
5050
"devDependencies": {
51-
"aegir": "^18.0.3",
52-
"chai": "^4.1.2",
51+
"aegir": "^18.2.1",
52+
"chai": "^4.2.0",
5353
"dirty-chai": "^2.0.1",
54-
"interface-transport": "~0.3.6",
55-
"multiaddr": "^6.0.3",
54+
"interface-transport": "~0.3.7",
55+
"multiaddr": "^6.0.6",
5656
"pull-goodbye": "0.0.2",
57-
"pull-stream": "^3.6.7"
57+
"pull-stream": "^3.6.9"
5858
},
5959
"contributors": [
6060
"Chris Campbell <christopher.d.campbell@gmail.com>",

‎test/node.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,8 @@ describe('dial', () => {
253253
})
254254
})
255255

256-
describe('ip6', () => {
256+
// TODO: https://github.com/libp2p/js-libp2p-websockets/issues/84
257+
describe.skip('ip6', () => {
257258
let ws
258259
let listener
259260
const ma = multiaddr('/ip6/::1/tcp/9091')

0 commit comments

Comments
 (0)
This repository has been archived.