Skip to content

Commit

Permalink
Setup CI caching for web build too
Browse files Browse the repository at this point in the history
  • Loading branch information
dabreegster committed Nov 16, 2024
1 parent 3dd1c96 commit 94f62b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/cache@v4
with:
path: backend/target
key: cargo-${{ hashFiles('backend/Cargo.lock') }}
key: cargo-test-${{ hashFiles('backend/Cargo.lock') }}

- name: Run tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/cache@v3
with:
path: backend/target
key: doesnt-matter-share-everything
key: cargo-wasm-${{ hashFiles('backend/Cargo.lock') }}

- name: Build web app
run: |
Expand Down

0 comments on commit 94f62b5

Please sign in to comment.