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