language: node_js
node_js:
  - node
sudo: false
cache: yarn
addons:
  apt:
    sources:
      - ubuntu-toolchain-r-test
    packages:
      - libcairo2-dev
      - libjpeg8-dev
      - libpango1.0-dev
      - libgif-dev
      - g++-4.9
env:
  - CXX=g++-4.9
script:
  - yarn lint
  - yarn test
after_success:
  - bash <(curl -s https://codecov.io/bash)
