Skip to content

Commit 413b15f

Browse files
committed
empty
1 parent 3c4bd73 commit 413b15f

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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-
#
51
version: 2
62
jobs:
73
build:
@@ -22,16 +18,15 @@ jobs:
2218
# Download and cache dependencies
2319
- restore_cache:
2420
keys:
25-
- v1-dependencies-{{ checksum "package.json" }}
21+
- v1-npm-dependencies-{{ checksum "package-lock.json" }}
2622
# fallback to using the latest cache if no exact match is found
27-
- v1-dependencies-
2823

2924
- run: npm install
3025

3126
- save_cache:
3227
paths:
3328
- node_modules
34-
key: v1-dependencies-{{ checksum "package.json" }}
29+
key: v1-npm-dependencies-{{ checksum "package-lock.json" }}
3530

3631
# run tests!
3732
- run: npm run build

0 commit comments

Comments
 (0)