Skip to content

Commit df8f7f0

Browse files
authored
Update config.yml
1 parent 2bceb16 commit df8f7f0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.circleci/config.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
version: 2
1+
version: 2.1
22
jobs:
33
build:
44
working_directory: ~/mern-starter
55
docker:
6-
- image: circleci/node:4.8.2
7-
- image: mongo:3.4.4
6+
- image: circleci/node:10.16.3
7+
- image: mongo:4.2.0
88
steps:
99
- checkout
1010
- run:
1111
name: update-npm
1212
command: 'sudo npm install -g npm@5'
1313
- restore_cache:
14-
key: dependency-cache-{{ checksum "package.json" }}
14+
key: dependency-cache-{{ checksum "package-lock.json" }}
1515
- run:
1616
name: install-npm-wee
1717
command: npm install
1818
- save_cache:
19-
key: dependency-cache-{{ checksum "package.json" }}
19+
key: dependency-cache-{{ checksum "package-lock.json" }}
2020
paths:
2121
- ./node_modules
2222
- run:

0 commit comments

Comments
 (0)