From e7e56d1cdbccc0015e6e05976d4fc0509c8e9c4e Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Thu, 21 Sep 2023 13:28:32 +0200 Subject: [PATCH] Removed caching --- .github/workflows/ci.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62f4db21..efcce452 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,15 +13,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v2 - - name: Retrieve the cached "node_modules" directory (if present) - uses: actions/cache@v2 - id: node-cache - with: - path: node_modules - key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} - - - name: Install dependencies (if the cached directory was not found) - if: steps.node-cache.outputs.cache-hit != 'true' + - name: Install dependencies run: npm ci working-directory: ./client