sudo: false
language: node_js
node_js:
  - 14
  - 16
script:
  - yarn install --non-interactive
  - yarn lint
  - yarn test
jobs:
  include:
    - stage: deploy
      on:
        branch: master
      node_js: 14
      script:
        - yarn install --non-interactive
        - npx semantic-release
notifications:
  email:
    on_success: never
    on_failure: always
