version: 2
jobs:
  build:
    docker:
      # specify the version you desire here
      - image: circleci/node:6
      - image: circleci/node:latest

    working_directory: ~/repo

    steps:
      - checkout

      - run: npm install

      - run: npm  run test-only


