From 63c4d27c20f83e1c599ef510dbdb421ac8b0b98e Mon Sep 17 00:00:00 2001 From: Balint Morasz Date: Thu, 26 Oct 2023 13:50:10 +0200 Subject: [PATCH] fix ci cache keys --- .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 1c9214c..8eabb38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,11 +25,11 @@ jobs: - name: Cache NPM packages uses: actions/cache@v3 with: - key: npm-${{ hashFiles('./frontend/node_modules/package-lock.json') }} + key: npm-${{ hashFiles('./frontend/package-lock.json') }} path: | ./frontend/node_modules restore-keys: | - npm-${{ hashFiles('./frontend/node_modules/package-lock.json') }} + npm-${{ hashFiles('./frontend/package-lock.json') }} npm- - name: Yarn Test run: |