mirror of
				https://github.com/pnpm/action-setup.git
				synced 2025-11-04 05:19:08 +08:00 
			
		
		
		
	docs: update the caching example
This commit is contained in:
		@@ -112,21 +112,19 @@ jobs:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
      - uses: pnpm/action-setup@v2
 | 
					      - uses: pnpm/action-setup@v2
 | 
				
			||||||
        name: Install pnpm
 | 
					        name: Install pnpm
 | 
				
			||||||
        id: pnpm-install
 | 
					 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          version: 7
 | 
					          version: 7
 | 
				
			||||||
          run_install: false
 | 
					          run_install: false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Get pnpm store directory
 | 
					      - name: Get pnpm store directory
 | 
				
			||||||
        id: pnpm-cache
 | 
					 | 
				
			||||||
        shell: bash
 | 
					        shell: bash
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
          echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
 | 
					          echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - uses: actions/cache@v3
 | 
					      - uses: actions/cache@v3
 | 
				
			||||||
        name: Setup pnpm cache
 | 
					        name: Setup pnpm cache
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
 | 
					          path: ${{ env.STORE_PATH }}
 | 
				
			||||||
          key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
 | 
					          key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
 | 
				
			||||||
          restore-keys: |
 | 
					          restore-keys: |
 | 
				
			||||||
            ${{ runner.os }}-pnpm-store-
 | 
					            ${{ runner.os }}-pnpm-store-
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user