From 838f9d4cca13276952d3278735bd84e2f3dc7fed Mon Sep 17 00:00:00 2001 From: Jon Koops Date: Mon, 22 Jan 2024 11:10:45 +0100 Subject: [PATCH] Remove caching of `node_modules` on CI --- .github/workflows/main.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9354921..a5cb5e4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,15 +23,7 @@ jobs: check-latest: true cache: npm - - name: Cache Node modules - id: cache-node-modules - uses: actions/cache@v3 - with: - path: node_modules - key: ${{ runner.os }}-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }} - - name: Install dependencies - if: steps.cache-node-modules.outputs.cache-hit != 'true' run: npm ci - name: Run tests