sudo: false
dist: bionic
language: node_js
cache:
  directories:
    - node_modules
notifications:
  email: false
  slack: snyk:5hknLE8muATMpE75TgeVFZzz
node_js:
  - 8
  - 10
  - 12
install:
  - npm install
script:
  - npm test
jobs:
  include:
    - stage: Release
      node_js: "10"
      script:
      - test "${TRAVIS_PULL_REQUEST}" != "false" || npx semantic-release
branches:
  only:
    - "master"
