version: 2.0
jobs:
build:
docker:
- image: circleci/node:10
steps:
- checkout
- run:
name: Install dependencies
command: npm install
name: Build Project
command: npm run build
name: Run tests
command: npm test