diff --git a/.github/workflows/run-lint.yaml b/.github/workflows/run-lint.yaml index 28878311..af042159 100644 --- a/.github/workflows/run-lint.yaml +++ b/.github/workflows/run-lint.yaml @@ -27,10 +27,10 @@ jobs: id: cache-check uses: actions/cache@v4 with: - path: ~/.npm + path: ./project/node_modules key: ${{ runner.os }}-node-${{ hashFiles('./project/package.json') }} restore-keys: | - ${{ runner.os }}-node- + ${{ runner.os }}-node-${{ hashFiles('./project/package.json') }} - name: Install NPM Dependencies if: steps.cache-check.outputs.cache-hit != 'true' diff --git a/.github/workflows/run-test.yaml b/.github/workflows/run-test.yaml index 8cf3aebc..01462a0c 100644 --- a/.github/workflows/run-test.yaml +++ b/.github/workflows/run-test.yaml @@ -27,10 +27,10 @@ jobs: id: cache-check uses: actions/cache@v4 with: - path: ~/.npm + path: ./project/node_modules key: ${{ runner.os }}-node-${{ hashFiles('./project/package.json') }} restore-keys: | - ${{ runner.os }}-node- + ${{ runner.os }}-node-${{ hashFiles('./project/package.json') }} - name: Install NPM Dependencies if: steps.cache-check.outputs.cache-hit != 'true' diff --git a/.github/workflows/run-types.yaml b/.github/workflows/run-types.yaml index 888a3c7c..e03b9eb5 100644 --- a/.github/workflows/run-types.yaml +++ b/.github/workflows/run-types.yaml @@ -27,10 +27,10 @@ jobs: id: cache-check uses: actions/cache@v4 with: - path: ~/.npm + path: ./project/node_modules key: ${{ runner.os }}-node-${{ hashFiles('./project/package.json') }} restore-keys: | - ${{ runner.os }}-node- + ${{ runner.os }}-node-${{ hashFiles('./project/package.json') }} - name: Install NPM Dependencies if: steps.cache-check.outputs.cache-hit != 'true'