From ee5da3672a7bad8a6bb74f9e441c36801cbe8385 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Fri, 3 Dec 2021 19:17:40 +0100 Subject: [PATCH] drop the cached node modules --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f64468ba..d8429034 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,8 +18,8 @@ jobs: uses: actions/cache@v2 with: path: '**/node_modules' - key: ${{ runner.os }}-cacheNodeModules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-cacheNodeModules- + key: ${{ runner.os }}-cacheNodeModules2-${{ hashFiles('**/package-lock.json') }} + restore-keys: ${{ runner.os }}-cacheNodeModules2- - name: execute `npm ci` (1) if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}