Update .forgejo/workflows/ci.yml
All checks were successful
Build Resilient App / build (push) Successful in 19m48s

This commit is contained in:
root 2025-06-11 11:04:41 +01:00
parent 48b609cc79
commit e62929274e

View file

@ -34,6 +34,15 @@ jobs:
cd src/main/webapp cd src/main/webapp
npm ci npm ci
- name: Cache node_modules
uses: actions/cache@v3
with:
path: |
**/node_modules
key: node-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
node-modules-
- name: Build frontend - name: Build frontend
run: | run: |
cd src/main/webapp cd src/main/webapp