mirror of
https://github.com/fluencelabs/js-libp2p-crypto
synced 2025-03-15 16:21:04 +00:00
38 lines
546 B
YAML
38 lines
546 B
YAML
sudo: false
|
|
language: node_js
|
|
|
|
matrix:
|
|
include:
|
|
- node_js: 4
|
|
env: CXX=g++-4.8
|
|
- node_js: 6
|
|
env:
|
|
- CXX=g++-4.8
|
|
- node_js: stable
|
|
env: CXX=g++-4.8
|
|
|
|
# Make sure we have new NPM.
|
|
before_install:
|
|
- npm install -g npm@4
|
|
|
|
script:
|
|
- npm run lint
|
|
- npm test
|
|
- npm run coverage
|
|
- make test
|
|
|
|
before_script:
|
|
- export DISPLAY=:99.0
|
|
- sh -e /etc/init.d/xvfb start
|
|
|
|
after_success:
|
|
- npm run coverage-publish
|
|
|
|
addons:
|
|
firefox: 'latest'
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|