mirror of
https://github.com/fluencelabs/js-mafmt
synced 2025-04-24 20:12:29 +00:00
25 lines
328 B
YAML
25 lines
328 B
YAML
sudo: false
|
|
language: node_js
|
|
node_js:
|
|
- 4
|
|
- 5
|
|
|
|
# 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
|