diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index 2ace1c6..53fc948 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -10,19 +10,11 @@ runs: run_install: false dest: ~/.pnpm - - name: Check pnpm store directory - shell: bash - run: pnpm store path - - - name: Check pnpm home var - shell: bash - run: echo $PNPM_HOME - - name: Cache pnpm-store uses: actions/cache@v3 id: pnpm-store with: - path: .pnpm-store + path: ${{ PNPM_HOME }} key: pnpm-store-${{ hashFiles('.npmrc') }} - name: Cache node_modules @@ -40,7 +32,3 @@ runs: if: steps.node-modules.cache-hit != 'true' run: pnpm install --frozen-lockfile shell: bash - - - name: Test /home/runner/.pnpm/node_modules/.bin - run: ls -a /home/runner/.pnpm/node_modules/.bin - shell: bash