mirror of
				https://github.com/actions/setup-node.git
				synced 2025-11-03 20:40:28 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			214 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			214 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export enum LockType {
 | 
						|
  Npm = 'npm',
 | 
						|
  Pnpm = 'pnpm',
 | 
						|
  Yarn = 'yarn'
 | 
						|
}
 | 
						|
 | 
						|
export enum State {
 | 
						|
  CachePrimaryKey = 'CACHE_KEY',
 | 
						|
  CacheMatchedKey = 'CACHE_RESULT'
 | 
						|
}
 | 
						|
 | 
						|
export enum Outputs {
 | 
						|
  CacheHit = 'cache-hit'
 | 
						|
}
 |