docs: remove redundant manual cache due to setup-node cache (#131)

This commit is contained in:
its-monotype 2024-07-05 15:24:26 +02:00 committed by GitHub
parent 0d0b43217a
commit 18ac635edf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -150,19 +150,6 @@ jobs:
node-version: 20
cache: 'pnpm'
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
```