File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,17 @@ steps:
1313 - attach_workspace :
1414 at : ~/voiceflow
1515 - run :
16- command : test -d ~/voiceflow/node_modules/.cache/turbo && cp -R ~/voiceflow/node_modules/.cache/turbo /tmp/turbo-cache
16+ command : |
17+ if [[ -d ~/voiceflow/node_modules/.cache/turbo ]]; then
18+ cp -R ~/voiceflow/node_modules/.cache/turbo /tmp/turbo-cache
19+ fi
1720 - install_node_modules
1821 - run :
1922 command : |
20- rm -rf ~/voiceflow/node_modules/.cache/turbo
21- test -d /tmp/turbo-cache && cp -R /tmp/turbo-cache ~/voiceflow/node_modules/.cache/turbo
23+ if [[ -d /tmp/turbo-cache ]]; then
24+ rm -rf ~/voiceflow/node_modules/.cache/turbo
25+ cp -R /tmp/turbo-cache ~/voiceflow/node_modules/.cache/turbo
26+ fi
2227 - monorepo_types_tests :
2328 run_on_root : << parameters.run_on_root >>
2429 force_execution : true
You can’t perform that action at this time.
0 commit comments