We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 781d43d commit 901191aCopy full SHA for 901191a
1 file changed
.circleci/config.yml
@@ -26,9 +26,9 @@ jobs:
26
- image: circleci/node:12
27
steps:
28
- checkout
29
- - run:
30
- name: Install dependencies
31
- command: npm install
+ - restore_cache:
+ name: Restore node_modules cache
+ key: dependency-cache-{{ checksum "package.json" }}
32
- run:
33
name: Build (dev)
34
command: npm run build:dev
@@ -40,9 +40,9 @@ jobs:
40
41
42
43
44
45
46
47
name: Lint
48
command: npm run lint
0 commit comments