File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -52,12 +52,16 @@ jobs:
52
52
name : Versions
53
53
command : npm version
54
54
- checkout
55
- - restore_cache :
56
- keys :
57
- - v2-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }}
55
+ # - restore_cache:
56
+ # keys:
57
+ # - v2-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }}
58
58
- run :
59
59
name : Install dependencies
60
60
command : npm install
61
+ - save_cache :
62
+ key : v2-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }}
63
+ paths :
64
+ - node_modules
61
65
- run :
62
66
name : Install eslint 5
63
67
command : |
68
72
- run :
69
73
name : Test
70
74
command : npm test
71
- - save_cache :
72
- key : v2-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }}
73
- paths :
74
- - node_modules
You can’t perform that action at this time.
0 commit comments