add cache to release
Some checks failed
Backend Actions / check (push) Successful in 13s
Backend Actions / build (push) Successful in 22s
Backend Actions / test (push) Successful in 34s
Backend Actions / package (push) Failing after 1m32s

This commit is contained in:
2025-07-25 14:24:09 +01:00
parent bec8abfe47
commit 0116d6fb58

View File

@ -17,6 +17,15 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '24'
- name: Load Cache
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
backend/target
ui/node_modules
key: ${{ runner.os }}-package-${{ hashFiles('backend/Cargo.lock') }}-${{ hashFiles('ui/package-lock.json') }}
- name: Install UI Dependencies
working-directory: ui