mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-04 08:41:05 +00:00
chore: fix linting and move linting to circle
This commit is contained in:
parent
99873e877b
commit
379febb610
11
.travis.yml
11
.travis.yml
@ -4,25 +4,16 @@ language: node_js
|
|||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- node_js: 6
|
- node_js: 'stable'
|
||||||
env: CXX=g++-4.8
|
env: CXX=g++-4.8
|
||||||
- node_js: 8
|
|
||||||
env: CXX=g++-4.8
|
|
||||||
# - node_js: stable
|
|
||||||
# env: CXX=g++-4.8
|
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- npm run lint
|
|
||||||
- npm run test
|
- npm run test
|
||||||
- npm run coverage
|
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- export DISPLAY=:99.0
|
- export DISPLAY=:99.0
|
||||||
- sh -e /etc/init.d/xvfb start
|
- sh -e /etc/init.d/xvfb start
|
||||||
|
|
||||||
after_success:
|
|
||||||
- npm run coverage-publish
|
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
firefox: 'latest'
|
firefox: 'latest'
|
||||||
apt:
|
apt:
|
||||||
|
@ -2,6 +2,12 @@ machine:
|
|||||||
node:
|
node:
|
||||||
version: stable
|
version: stable
|
||||||
|
|
||||||
|
test:
|
||||||
|
pre:
|
||||||
|
- npm run lint
|
||||||
|
post:
|
||||||
|
- npm run coverage -- --upload --providers coveralls
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
pre:
|
pre:
|
||||||
- google-chrome --version
|
- google-chrome --version
|
||||||
@ -15,4 +21,4 @@ dependencies:
|
|||||||
- sudo apt-get install -f
|
- sudo apt-get install -f
|
||||||
- sudo apt-get install --only-upgrade lsb-base
|
- sudo apt-get install --only-upgrade lsb-base
|
||||||
- sudo dpkg -i google-chrome.deb
|
- sudo dpkg -i google-chrome.deb
|
||||||
- google-chrome --version
|
- google-chrome --version
|
||||||
|
@ -55,12 +55,12 @@ parallel([
|
|||||||
if (err) { throw err }
|
if (err) { throw err }
|
||||||
|
|
||||||
node1.pubsub.subscribe('news',
|
node1.pubsub.subscribe('news',
|
||||||
(msg) => console.log(msg.from, msg.data.toString(),
|
(msg) => console.log(msg.from, msg.data.toString()),
|
||||||
() => {
|
() => {
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
node2.pubsub.publish('news', Buffer.from('Bird bird bird, bird is the word!'))
|
node2.pubsub.publish('news', Buffer.from('Bird bird bird, bird is the word!'))
|
||||||
}, 1000)
|
}, 1000)
|
||||||
})
|
}
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user