From 8fc22b07b7cd0994fca73ef6a2c431ae88593bad Mon Sep 17 00:00:00 2001 From: Niloofar Date: Fri, 6 Oct 2023 12:35:12 +0800 Subject: [PATCH] fix: cache issue --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 722ef1e72c..2318fe5bb4 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -25,7 +25,7 @@ jobs: cache-name: cache-node-modules with: # npm cache files are stored in `~/.npm` on Linux/macOS - path: ~/.node_modules + path: ~/.npm key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('./package-lock.json') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}-