
language: node_js
sudo: false
node_js:
  - 11
  - 10
  - 9
  - 8
install:
  - npm install
script:
  - npm run-script lint
  - npm test
  - npm run jsdoc
deploy:
  provider: pages
  skip_cleanup: true
  github_token: $GITHUB_TOKEN
  keep_history: true
  local_dir: jsdoc
  on:
    branch: master
    node: '11'
