diff --git a/.gitea/workflows/hub-check.yml b/.gitea/workflows/hub-check.yml index 1de9283..3f28e39 100644 --- a/.gitea/workflows/hub-check.yml +++ b/.gitea/workflows/hub-check.yml @@ -39,10 +39,14 @@ jobs: with: node-version: "24" cache: npm - cache-dependency-path: hub/package-lock.json + cache-dependency-path: | + hub/package-lock.json + hub/admin-web/package-lock.json - name: Install dependencies - run: npm ci + run: | + npm ci + npm ci --prefix admin-web - name: Audit production Node dependencies run: npm run audit:production