mirror of
https://github.com/fluencelabs/js-libp2p-crypto
synced 2025-03-15 18:31:08 +00:00
35 lines
444 B
YAML
35 lines
444 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
|
|
|
|
|
|
before_script:
|
|
- export DISPLAY=:99.0
|
|
- sh -e /etc/init.d/xvfb start
|
|
|
|
after_success:
|
|
- npm run coverage-publish
|
|
|
|
env:
|
|
- CXX=g++-4.8
|
|
|
|
addons:
|
|
firefox: 'latest'
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|