Skip to content

Commit b383d61

Browse files
author
Zakk Fleischmann
committed
Merge branch 'master' of github.com:ga-wdi-exercises/checkpoint-javascript
2 parents f5b98ef + e1b1be2 commit b383d61

File tree

3 files changed

+558
-113
lines changed

3 files changed

+558
-113
lines changed

.circleci/config.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,23 @@ jobs:
77
build:
88
docker:
99
# specify the version you desire here
10-
- image: circleci/node:8.11-stretch-browsers
10+
- image: circleci/node:12.0.0
1111
steps:
1212
- checkout
1313
# Download and cache dependencies
1414
- restore_cache:
1515
key: v1-dependencies-{{ checksum "package.json" }}
1616

17-
- run:
18-
command: 'npm install'
17+
- run:
18+
command: "npm install"
1919
name: install npm packages
2020

2121
- save_cache:
2222
paths:
2323
- node_modules
2424
key: v1-dependencies-{{ checksum "package.json" }}
25-
25+
2626
# run tests!
27-
- run:
28-
command: 'npm test'
27+
- run:
28+
command: "npm test"
2929
name: run tests
30-
31-

0 commit comments

Comments
 (0)