We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc2e47 commit 5e5c8c2Copy full SHA for 5e5c8c2
.circleci/config.yml
@@ -18,6 +18,11 @@ jobs:
18
# password: $DOCKER_TMP_PW
19
steps:
20
- checkout
21
+ - restore_cache:
22
+ keys:
23
+ - v1-deps-{{ .Branch }}-{{ checksum "package.json" }}
24
+ - v1-deps-{{ .Branch }}
25
+ - v1-deps
26
- run: |
27
sudo apt-get update
28
sudo apt-get --yes install libx11-dev libxkbfile-dev
@@ -41,6 +46,10 @@ jobs:
41
46
- run: python --version
42
47
- run: docker ps
43
48
- run: yarn
49
+ - save_cache:
50
+ key: v1-deps-{{ .Branch }}-{{ checksum "package.json" }}
51
+ paths:
52
+ - ~/.cache ## cache both yarn and Cypress!
44
53
- run:
45
54
working_directory: browser-app
55
command: yarn start
0 commit comments