mirror of
				https://github.com/actions/setup-node.git
				synced 2025-10-31 16:14:00 +08:00 
			
		
		
		
	work on resolving comments
This commit is contained in:
		| @@ -25,7 +25,7 @@ export const restoreCache = async (packageManager: string) => { | ||||
|   const lockFilePath = findLockFile(packageManagerInfo); | ||||
|   const fileHash = await glob.hashFiles(lockFilePath); | ||||
|  | ||||
|   const primaryKey = `${platform}-${packageManager}-${fileHash}`; | ||||
|   const primaryKey = `node-cache-${platform}-${packageManager}-${fileHash}`; | ||||
|   core.debug(`primary key is ${primaryKey}`); | ||||
|  | ||||
|   core.saveState(State.CachePrimaryKey, primaryKey); | ||||
|   | ||||
| @@ -4,8 +4,8 @@ import {State} from './constants'; | ||||
| import {getCacheDirectoryPath, getPackageManagerInfo} from './cache-utils'; | ||||
|  | ||||
| export async function run() { | ||||
|   const cacheLock = core.getInput('cache'); | ||||
|   try { | ||||
|     const cacheLock = core.getInput('cache'); | ||||
|     await cachePackages(cacheLock); | ||||
|   } catch (error) { | ||||
|     core.setFailed(error.message); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Dmitry Shibanov
					Dmitry Shibanov