Skip to content

Commit e44e617

Browse files
author
jabyess
committed
fix config
1 parent f6e935d commit e44e617

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.circleci/config.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,18 @@ jobs:
2020
- checkout
2121
# Download and cache dependencies
2222
- restore_cache:
23-
key: dependency-cache-{{ checksum "package.json" }}
23+
key: v1-dependencies-{{ checksum "package.json" }}
2424
# fallback to using the latest cache if no exact match is found
25-
- dependency-cache-
25+
- v1-dependencies-
2626

27-
# install node_modules
2827
- run:
2928
command: npm install
3029
name: install npm packages
3130

3231
- save_cache:
3332
paths:
3433
- node_modules
35-
key: dependency-cache-{{ checksum "package.json" }}
34+
key: v1-dependencies-{{ checksum "package.json" }}
3635

3736
# run tests!
3837
- run:

0 commit comments

Comments
 (0)