language: node_js
node_js:
  - "10"
  - "14"
cache: yarn
jobs:
  include:
    - stage: test
      script:
        - yarn
        - yarn test
stages:
  - name: test
    if: type = push
