mirror of
				https://github.com/actions/setup-node.git
				synced 2025-10-31 23:43:33 +00:00 
			
		
		
		
	Merge 5993da79df0b1936533a224325947015b1620dfe into a7c2d9473e135474f9c8e6d48969d1d90f950ea1
This commit is contained in:
		
						commit
						19873b42c4
					
				| @ -115,7 +115,7 @@ describe('cache-restore', () => { | ||||
|     it.each([['npm7'], ['npm6'], ['pnpm6'], ['yarn1'], ['yarn2'], ['random']])( | ||||
|       'Throw an error because %s is not supported', | ||||
|       async packageManager => { | ||||
|         await expect(restoreCache(packageManager, '')).rejects.toThrow( | ||||
|         await expect(restoreCache(packageManager, '', '')).rejects.toThrow( | ||||
|           `Caching for '${packageManager}' is not supported` | ||||
|         ); | ||||
|       } | ||||
| @ -124,13 +124,13 @@ describe('cache-restore', () => { | ||||
| 
 | ||||
|   describe('Restore dependencies', () => { | ||||
|     it.each([ | ||||
|       ['yarn', '2.1.2', yarnFileHash], | ||||
|       ['yarn', '1.2.3', yarnFileHash], | ||||
|       ['npm', '', npmFileHash], | ||||
|       ['pnpm', '', pnpmFileHash] | ||||
|       ['yarn', '2.1.2', yarnFileHash, '22'], | ||||
|       ['yarn', '1.2.3', yarnFileHash, '20.17'], | ||||
|       ['npm', '', npmFileHash, '22.12'], | ||||
|       ['pnpm', '', pnpmFileHash, '18'] | ||||
|     ])( | ||||
|       'restored dependencies for %s', | ||||
|       async (packageManager, toolVersion, fileHash) => { | ||||
|       async (packageManager, toolVersion, fileHash, nodeVersion) => { | ||||
|         getCommandOutputSpy.mockImplementation((command: string) => { | ||||
|           if (command.includes('version')) { | ||||
|             return toolVersion; | ||||
| @ -139,10 +139,10 @@ describe('cache-restore', () => { | ||||
|           } | ||||
|         }); | ||||
| 
 | ||||
|         await restoreCache(packageManager, ''); | ||||
|         await restoreCache(packageManager, '', nodeVersion); | ||||
|         expect(hashFilesSpy).toHaveBeenCalled(); | ||||
|         expect(infoSpy).toHaveBeenCalledWith( | ||||
|           `Cache restored from key: node-cache-${platform}-${arch}-${packageManager}-${fileHash}` | ||||
|           `Cache restored from key: node-cache-${platform}-${arch}-${nodeVersion}-${packageManager}-${fileHash}` | ||||
|         ); | ||||
|         expect(infoSpy).not.toHaveBeenCalledWith( | ||||
|           `${packageManager} cache is not found` | ||||
| @ -170,7 +170,7 @@ describe('cache-restore', () => { | ||||
|         }); | ||||
| 
 | ||||
|         restoreCacheSpy.mockImplementationOnce(() => undefined); | ||||
|         await restoreCache(packageManager, ''); | ||||
|         await restoreCache(packageManager, '', ''); | ||||
|         expect(hashFilesSpy).toHaveBeenCalled(); | ||||
|         expect(infoSpy).toHaveBeenCalledWith( | ||||
|           `${packageManager} cache is not found` | ||||
|  | ||||
							
								
								
									
										6
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							| @ -96747,7 +96747,7 @@ const fs_1 = __importDefault(__nccwpck_require__(7147)); | ||||
| const os_1 = __importDefault(__nccwpck_require__(2037)); | ||||
| const constants_1 = __nccwpck_require__(9042); | ||||
| const cache_utils_1 = __nccwpck_require__(1678); | ||||
| const restoreCache = (packageManager, cacheDependencyPath) => __awaiter(void 0, void 0, void 0, function* () { | ||||
| const restoreCache = (packageManager, cacheDependencyPath, nodeVersion) => __awaiter(void 0, void 0, void 0, function* () { | ||||
|     const packageManagerInfo = yield (0, cache_utils_1.getPackageManagerInfo)(packageManager); | ||||
|     if (!packageManagerInfo) { | ||||
|         throw new Error(`Caching for '${packageManager}' is not supported`); | ||||
| @ -96763,7 +96763,7 @@ const restoreCache = (packageManager, cacheDependencyPath) => __awaiter(void 0, | ||||
|     if (!fileHash) { | ||||
|         throw new Error('Some specified paths were not resolved, unable to cache dependencies.'); | ||||
|     } | ||||
|     const keyPrefix = `node-cache-${platform}-${arch}-${packageManager}`; | ||||
|     const keyPrefix = `node-cache-${platform}-${arch}-${nodeVersion}-${packageManager}`; | ||||
|     const primaryKey = `${keyPrefix}-${fileHash}`; | ||||
|     core.debug(`primary key is ${primaryKey}`); | ||||
|     core.saveState(constants_1.State.CachePrimaryKey, primaryKey); | ||||
| @ -97913,7 +97913,7 @@ function run() { | ||||
|             if (cache && (0, cache_utils_1.isCacheFeatureAvailable)()) { | ||||
|                 core.saveState(constants_1.State.CachePackageManager, cache); | ||||
|                 const cacheDependencyPath = core.getInput('cache-dependency-path'); | ||||
|                 yield (0, cache_restore_1.restoreCache)(cache, cacheDependencyPath); | ||||
|                 yield (0, cache_restore_1.restoreCache)(cache, cacheDependencyPath, version); | ||||
|             } | ||||
|             const matchersPath = path.join(__dirname, '../..', '.github'); | ||||
|             core.info(`##[add-matcher]${path.join(matchersPath, 'tsc.json')}`); | ||||
|  | ||||
| @ -15,7 +15,8 @@ import { | ||||
| 
 | ||||
| export const restoreCache = async ( | ||||
|   packageManager: string, | ||||
|   cacheDependencyPath: string | ||||
|   cacheDependencyPath: string, | ||||
|   nodeVersion: string | ||||
| ) => { | ||||
|   const packageManagerInfo = await getPackageManagerInfo(packageManager); | ||||
|   if (!packageManagerInfo) { | ||||
| @ -40,7 +41,7 @@ export const restoreCache = async ( | ||||
|     ); | ||||
|   } | ||||
| 
 | ||||
|   const keyPrefix = `node-cache-${platform}-${arch}-${packageManager}`; | ||||
|   const keyPrefix = `node-cache-${platform}-${arch}-${nodeVersion}-${packageManager}`; | ||||
|   const primaryKey = `${keyPrefix}-${fileHash}`; | ||||
|   core.debug(`primary key is ${primaryKey}`); | ||||
| 
 | ||||
|  | ||||
| @ -62,7 +62,7 @@ export async function run() { | ||||
|     if (cache && isCacheFeatureAvailable()) { | ||||
|       core.saveState(State.CachePackageManager, cache); | ||||
|       const cacheDependencyPath = core.getInput('cache-dependency-path'); | ||||
|       await restoreCache(cache, cacheDependencyPath); | ||||
|       await restoreCache(cache, cacheDependencyPath, version); | ||||
|     } | ||||
| 
 | ||||
|     const matchersPath = path.join(__dirname, '../..', '.github'); | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user