# (from: https://github.com/codecov/example-node/blob/master/.travis.yml)
language: node_js
sudo: false
node_js:
  - "10"
  - "8"
  - "6"
install:
  - npm install
script:
  # Check whether "run build" is successful
  - npm run build
