We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 529dcf9 commit 77db77eCopy full SHA for 77db77e
.circleci/config.yml
@@ -16,12 +16,21 @@ commands:
16
type: string
17
default: ""
18
steps:
19
+ - restore_cache:
20
+ name: Restore Yarn Package Cache for << parameters.path >>
21
+ keys:
22
+ - yarn-packages-{{ checksum "<< parameters.path >>/yarn.lock" }}
23
- run:
24
name: "Building << parameters.path >>"
25
command: |
26
cd "<< parameters.path >>"
27
yarn
28
yarn build
29
+ - save_cache:
30
+ name: Save Yarn Package Cache for << parameters.path >>
31
+ key: yarn-packages-{{ checksum "<< parameters.path >>/yarn.lock" }}
32
+ paths:
33
+ - ./<< parameters.path >>/node_modules
34
jobs:
35
build_angular_projects:
36
executor: node14
0 commit comments