mirror of
https://github.com/fluencelabs/js-libp2p-tcp
synced 2025-04-24 23:52:33 +00:00
26 lines
339 B
YAML
26 lines
339 B
YAML
sudo: false
|
|
language: node_js
|
|
node_js:
|
|
- 4
|
|
- 5
|
|
- stable
|
|
|
|
# Make sure we have new NPM.
|
|
before_install:
|
|
- npm install -g npm
|
|
|
|
script:
|
|
- npm run lint
|
|
- npm test
|
|
- npm run coverage
|
|
|
|
addons:
|
|
firefox: 'latest'
|
|
|
|
before_script:
|
|
- export DISPLAY=:99.0
|
|
- sh -e /etc/init.d/xvfb start
|
|
|
|
after_success:
|
|
- npm run coverage-publish
|