version: 2 jobs: run_tester: docker: - image: circleci/node:latest working_directory: ~/flaska steps: - checkout - run: name: Install dependencies command: | npm install npm list --all - run: name: Run tests command: | npm test workflows: version: 2 build_deploy: jobs: - run_tester