mirror of
				https://github.com/threeal/cmake-action.git
				synced 2025-11-04 05:43:42 +00:00 
			
		
		
		
	test: fix @typescript-eslint/consistent-indexed-object-style lint issue
				
					
				
			This commit is contained in:
		
							parent
							
								
									2f79fde5e7
								
							
						
					
					
						commit
						669a11854e
					
				@ -11,9 +11,9 @@ jest.unstable_mockModule("@actions/core", () => ({
 | 
			
		||||
describe("get action inputs", () => {
 | 
			
		||||
  interface TestCase {
 | 
			
		||||
    name: string;
 | 
			
		||||
    booleanInputs?: { [key: string]: boolean };
 | 
			
		||||
    stringInputs?: { [key: string]: string };
 | 
			
		||||
    multilineInputs?: { [key: string]: string[] };
 | 
			
		||||
    booleanInputs?: Record<string, boolean>;
 | 
			
		||||
    stringInputs?: Record<string, string>;
 | 
			
		||||
    multilineInputs?: Record<string, string[]>;
 | 
			
		||||
    expectedInputs?: Partial<Inputs>;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user