language: node_js

node_js:
  - lts/*
  - node
  - 12
  - 11
  - 10
  - 9
  - 8

os:
  - linux
  - osx
  - windows

sudo: false

cache:
  npm

notifications:
  email: false

jobs:
  include:
    - stage: test
      script:
        - npm run lint
        - npm test

    - stage: release
      script:
        - echo "skipping tests"

      deploy:
        skip_cleanup: true
        provider: script
        script:
          - npx semantic-release
        on:
          branch: master
