mirror of
				https://github.com/actions/cache.git
				synced 2025-10-31 10:24:19 +08:00 
			
		
		
		
	Generate build and fix format
This commit is contained in:
		
							parent
							
								
									204fa1ab69
								
							
						
					
					
						commit
						f316f94f31
					
				| @ -216,7 +216,10 @@ test("getInputAsArray handles empty lines correctly", () => { | |||||||
| }); | }); | ||||||
| 
 | 
 | ||||||
| test("getInputAsArray sorts files correctly", () => { | test("getInputAsArray sorts files correctly", () => { | ||||||
|     testUtils.setInput("foo", "bar\n!baz\nwaldo\nqux\nquux\ncorge\ngrault\ngarply"); |     testUtils.setInput( | ||||||
|  |         "foo", | ||||||
|  |         "bar\n!baz\nwaldo\nqux\nquux\ncorge\ngrault\ngarply" | ||||||
|  |     ); | ||||||
|     expect(actionUtils.getInputAsArray("foo")).toEqual([ |     expect(actionUtils.getInputAsArray("foo")).toEqual([ | ||||||
|         "!baz", |         "!baz", | ||||||
|         "bar", |         "bar", | ||||||
|  | |||||||
							
								
								
									
										5
									
								
								dist/restore/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								dist/restore/index.js
									
									
									
									
										vendored
									
									
								
							| @ -37662,8 +37662,9 @@ function getInputAsArray(name, options) { | |||||||
|     return core |     return core | ||||||
|         .getInput(name, options) |         .getInput(name, options) | ||||||
|         .split("\n") |         .split("\n") | ||||||
|         .map(s => s.trim()) |         .map(s => s.replace(/^\!\s+/, '!').trim()) | ||||||
|         .filter(x => x !== ""); |         .filter(x => x !== "") | ||||||
|  |         .sort(); | ||||||
| } | } | ||||||
| exports.getInputAsArray = getInputAsArray; | exports.getInputAsArray = getInputAsArray; | ||||||
| function getInputAsInt(name, options) { | function getInputAsInt(name, options) { | ||||||
|  | |||||||
							
								
								
									
										5
									
								
								dist/save/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								dist/save/index.js
									
									
									
									
										vendored
									
									
								
							| @ -37662,8 +37662,9 @@ function getInputAsArray(name, options) { | |||||||
|     return core |     return core | ||||||
|         .getInput(name, options) |         .getInput(name, options) | ||||||
|         .split("\n") |         .split("\n") | ||||||
|         .map(s => s.trim()) |         .map(s => s.replace(/^\!\s+/, '!').trim()) | ||||||
|         .filter(x => x !== ""); |         .filter(x => x !== "") | ||||||
|  |         .sort(); | ||||||
| } | } | ||||||
| exports.getInputAsArray = getInputAsArray; | exports.getInputAsArray = getInputAsArray; | ||||||
| function getInputAsInt(name, options) { | function getInputAsInt(name, options) { | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Vipul
						Vipul