From bc03a8b5855da6f3ea000418bd5cff76319012e9 Mon Sep 17 00:00:00 2001 From: its-monotype Date: Fri, 21 Jun 2024 01:25:12 +0200 Subject: [PATCH] docs: remove redundant manual cache due to setup-node cache --- README.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/README.md b/README.md index aff3cb7..7ad77c8 100644 --- a/README.md +++ b/README.md @@ -127,19 +127,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 ```