Skip to content

Commit abcae37

Browse files
committed
config: fix cache path
The path to cache was missing a slash, meaning it was looking for a "dot folder" instead of a relative path which ultimately led to an empty cache.
1 parent 3daaeef commit abcae37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- save_cache:
1919
key: dependency-cache-{{ checksum "package.json" }}
2020
paths:
21-
- .node_modules
21+
- ./node_modules
2222
- run:
2323
name: test
2424
command: npm test

0 commit comments

Comments
 (0)