We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c25d4a commit b918388Copy full SHA for b918388
.circleci/config.yml
@@ -7,7 +7,7 @@ jobs:
7
build:
8
docker:
9
# specify the version you desire here
10
- - image: circleci/node:8.17.0
+ - image: circleci/node:12.13.0
11
environment:
12
PORT: 3000
13
# CircleCI PostgreSQL images available at: https://hub.docker.com/r/circleci/postgres/
@@ -25,9 +25,9 @@ jobs:
25
# Download and cache dependencies
26
- restore_cache:
27
keys:
28
- - v2-dependencies-{{ checksum "package.json" }}
+ - v3-dependencies-{{ checksum "package.json" }}
29
# fallback to using the latest cache if no exact match is found
30
- - v2-dependencies-
+ - v3-dependencies-
31
32
- run: npm install
33
0 commit comments