1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| version: 2
| jobs:
| build:
| docker:
| - image: circleci/node:7.10
| working_directory: ~/repo
| steps:
| - checkout
| - restore_cache:
| keys:
| - v1-dependencies-{{ checksum "package.json" }}
| - v1-dependencies-
| - run: git config --global user.email "1551510+mcwhittemore@users.noreply.github.com"
| - run: git config --global user.name "test staged-git-files"
| - run: npm install
| - save_cache:
| paths:
| - node_modules
| key: v1-dependencies-{{ checksum "package.json" }}
| - run: npm test
|
|