mirror of
				https://github.com/actions/cache.git
				synced 2025-10-31 10:24:19 +08:00 
			
		
		
		
	Update Node Windows example to find the npm cache (#223)
This commit is contained in:
		
							parent
							
								
									b13df3fa54
								
							
						
					
					
						commit
						22d71e33ad
					
				| @ -140,10 +140,14 @@ For npm, cache files are stored in `~/.npm` on Posix, or `%AppData%/npm-cache` o | |||||||
| ### Windows | ### Windows | ||||||
| 
 | 
 | ||||||
| ```yaml | ```yaml | ||||||
|  | - name: Get npm cache directory | ||||||
|  |   id: npm-cache | ||||||
|  |   run: | | ||||||
|  |     echo "::set-output name=dir::$(npm config get cache)" | ||||||
| - uses: actions/cache@v1 | - uses: actions/cache@v1 | ||||||
|   with: |   with: | ||||||
|     path: ~\AppData\Roaming\npm-cache |     path: ${{ steps.npm-cache.outputs.dir }} | ||||||
|     key: ${{ runner.os }}-node-${{ hashFiles('**\package-lock.json') }} |     key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||||||
|     restore-keys: | |     restore-keys: | | ||||||
|       ${{ runner.os }}-node- |       ${{ runner.os }}-node- | ||||||
| ``` | ``` | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Dylan Musil
						Dylan Musil