mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 07:38:37 +08:00 
			
		
		
		
	
							parent
							
								
									eb78578266
								
							
						
					
					
						commit
						f60097cd16
					
				| 
						 | 
					@ -67,6 +67,7 @@ See [Examples](examples.md) for a list of `actions/cache` implementations for us
 | 
				
			||||||
- [Java - Gradle](./examples.md#java---gradle)
 | 
					- [Java - Gradle](./examples.md#java---gradle)
 | 
				
			||||||
- [Java - Maven](./examples.md#java---maven)
 | 
					- [Java - Maven](./examples.md#java---maven)
 | 
				
			||||||
- [Node - npm](./examples.md#node---npm)
 | 
					- [Node - npm](./examples.md#node---npm)
 | 
				
			||||||
 | 
					- [Node - Lerna](./examples.md#node---lerna)
 | 
				
			||||||
- [Node - Yarn](./examples.md#node---yarn)
 | 
					- [Node - Yarn](./examples.md#node---yarn)
 | 
				
			||||||
- [OCaml/Reason - esy](./examples.md##ocamlreason---esy)
 | 
					- [OCaml/Reason - esy](./examples.md##ocamlreason---esy)
 | 
				
			||||||
- [PHP - Composer](./examples.md#php---composer)
 | 
					- [PHP - Composer](./examples.md#php---composer)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										27
									
								
								examples.md
									
									
									
									
									
								
							
							
						
						
									
										27
									
								
								examples.md
									
									
									
									
									
								
							| 
						 | 
					@ -11,8 +11,8 @@
 | 
				
			||||||
    - [macOS and Ubuntu](#macos-and-ubuntu)
 | 
					    - [macOS and Ubuntu](#macos-and-ubuntu)
 | 
				
			||||||
    - [Windows](#windows)
 | 
					    - [Windows](#windows)
 | 
				
			||||||
    - [Using multiple systems and `npm config`](#using-multiple-systems-and-npm-config)
 | 
					    - [Using multiple systems and `npm config`](#using-multiple-systems-and-npm-config)
 | 
				
			||||||
  - [Node - Yarn](#node---yarn)
 | 
					 | 
				
			||||||
  - [Node - Lerna](#node---lerna)
 | 
					  - [Node - Lerna](#node---lerna)
 | 
				
			||||||
 | 
					  - [Node - Yarn](#node---yarn)
 | 
				
			||||||
  - [OCaml/Reason - esy](#ocamlreason---esy)
 | 
					  - [OCaml/Reason - esy](#ocamlreason---esy)
 | 
				
			||||||
  - [PHP - Composer](#php---composer)
 | 
					  - [PHP - Composer](#php---composer)
 | 
				
			||||||
  - [Python - pip](#python---pip)
 | 
					  - [Python - pip](#python---pip)
 | 
				
			||||||
| 
						 | 
					@ -168,6 +168,19 @@ For npm, cache files are stored in `~/.npm` on Posix, or `%AppData%/npm-cache` o
 | 
				
			||||||
      ${{ runner.os }}-node-
 | 
					      ${{ runner.os }}-node-
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Node - Lerna
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					>Note this example uses the new multi-paths feature and is only available at `master`
 | 
				
			||||||
 | 
					```yaml
 | 
				
			||||||
 | 
					- name: restore lerna
 | 
				
			||||||
 | 
					  uses: actions/cache@master
 | 
				
			||||||
 | 
					  with:
 | 
				
			||||||
 | 
					    path: |
 | 
				
			||||||
 | 
					      node_modules
 | 
				
			||||||
 | 
					      */*/node_modules
 | 
				
			||||||
 | 
					    key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Node - Yarn
 | 
					## Node - Yarn
 | 
				
			||||||
The yarn cache directory will depend on your operating system and version of `yarn`. See https://yarnpkg.com/lang/en/docs/cli/cache/ for more info.
 | 
					The yarn cache directory will depend on your operating system and version of `yarn`. See https://yarnpkg.com/lang/en/docs/cli/cache/ for more info.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -185,18 +198,6 @@ The yarn cache directory will depend on your operating system and version of `ya
 | 
				
			||||||
      ${{ runner.os }}-yarn-
 | 
					      ${{ runner.os }}-yarn-
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Node - Lerna
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
```yaml
 | 
					 | 
				
			||||||
- name: restore lerna
 | 
					 | 
				
			||||||
  uses: actions/cache@v2
 | 
					 | 
				
			||||||
   with:
 | 
					 | 
				
			||||||
     path: |
 | 
					 | 
				
			||||||
       node_modules
 | 
					 | 
				
			||||||
        */*/node_modules
 | 
					 | 
				
			||||||
     key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
 | 
					 | 
				
			||||||
```
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
## OCaml/Reason - esy
 | 
					## OCaml/Reason - esy
 | 
				
			||||||
Esy allows you to export built dependencies and import pre-built dependencies.
 | 
					Esy allows you to export built dependencies and import pre-built dependencies.
 | 
				
			||||||
```yaml
 | 
					```yaml
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user