version: 2
jobs:
  test:
    docker:
    - image: circleci/node:14
    steps:
    - checkout
    - run: npm i
    - run: npm test
workflows:
  version: 2
  build_and_test:
    jobs:
    - test
