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 3c4bd73 commit 413b15fCopy full SHA for 413b15f
.circleci/config.yml
@@ -1,7 +1,3 @@
1
-# Javascript Node CircleCI 2.0 configuration file
2
-#
3
-# Check https://circleci.com/docs/2.0/language-javascript/ for more details
4
5
version: 2
6
jobs:
7
build:
@@ -22,16 +18,15 @@ jobs:
22
18
# Download and cache dependencies
23
19
- restore_cache:
24
20
keys:
25
- - v1-dependencies-{{ checksum "package.json" }}
21
+ - v1-npm-dependencies-{{ checksum "package-lock.json" }}
26
# fallback to using the latest cache if no exact match is found
27
- - v1-dependencies-
28
29
- run: npm install
30
31
- save_cache:
32
paths:
33
- node_modules
34
- key: v1-dependencies-{{ checksum "package.json" }}
+ key: v1-npm-dependencies-{{ checksum "package-lock.json" }}
35
36
# run tests!
37
- run: npm run build
0 commit comments