Skip to content

Commit

Permalink
remove pnpm store cache step from ci/cd deploy job
Browse files Browse the repository at this point in the history
  • Loading branch information
Moroshima committed Nov 10, 2023
1 parent a6cecc2 commit b09f13a
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,6 @@ jobs:
with:
version: latest

- name: Cache pnpm package store directory
id: cache-pnpm-store
uses: actions/cache@v3
env:
cache-name: cache-pnpm-store-directory
with:
# the pnpm package store directory path is ` ~/.local/share/pnpm/store` on GNU/Linux
path: ~/.local/share/pnpm/store
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- if: ${{ steps.cache-pnpm-store.outputs.cache-hit != 'true' }}
name: List the state of node modules
continue-on-error: true
run: pnpm list

- name: Install dependencies
run: pnpm install

Expand Down

0 comments on commit b09f13a

Please sign in to comment.