From 59e4552180fe5ec2378cf69b96a69425c63f5598 Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Mon, 4 Aug 2025 19:13:28 +0200 Subject: [PATCH] Fix working directory path and update cache dependency path in CI workflow --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13bb84d..52096b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,12 +38,18 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + path: apps/infoalloggi + - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: 20 cache: "npm" + cache-dependency-path: apps/infoalloggi/package-lock.json + + - name: Install Dependencies run: npm install