We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71204c5 commit 0962048Copy full SHA for 0962048
.circleci/config.yml
@@ -9,11 +9,6 @@ jobs:
9
# specify the version you desire here
10
- image: circleci/node:11.4.0
11
12
- # Specify service dependencies here if necessary
13
- # CircleCI maintains a library of pre-built images
14
- # documented at https://circleci.com/docs/2.0/circleci-images/
15
- # - image: circleci/mongo:3.4.4
16
-
17
working_directory: ~/repo
18
19
steps:
@@ -22,9 +17,7 @@ jobs:
22
# Download and cache dependencies
23
- restore_cache:
24
keys:
25
- - v1-dependencies-{{ checksum "package.json" }}
26
- # fallback to using the latest cache if no exact match is found
27
- - v1-dependencies-
20
+ - v1-dependencies-{{ checksum "package.json" }}
28
21
29
- run: yarn install
30
0 commit comments