Skip to content

Commit 94f62b5

Browse files
committed
Setup CI caching for web build too
1 parent 3dd1c96 commit 94f62b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/cache@v4
1717
with:
1818
path: backend/target
19-
key: cargo-${{ hashFiles('backend/Cargo.lock') }}
19+
key: cargo-test-${{ hashFiles('backend/Cargo.lock') }}
2020

2121
- name: Run tests
2222
run: |

.github/workflows/web.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/cache@v3
2525
with:
2626
path: backend/target
27-
key: doesnt-matter-share-everything
27+
key: cargo-wasm-${{ hashFiles('backend/Cargo.lock') }}
2828

2929
- name: Build web app
3030
run: |

0 commit comments

Comments
 (0)