mirror of
				https://github.com/actions/checkout.git
				synced 2025-11-01 02:28:40 +08:00 
			
		
		
		
	 6ccd57f4c5
			
		
	
	
		6ccd57f4c5
		
			
		
	
	
	
	
		
			
			* Pin actions/checkout's own workflows to a known, good, stable version. * fixed failing unit test * fix unit test
		
			
				
	
	
		
			14 lines
		
	
	
		
			249 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			249 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Licensed
 | |
| 
 | |
| on:
 | |
|   push: {branches: main}
 | |
|   pull_request: {branches: main}
 | |
| 
 | |
| jobs:
 | |
|   test:
 | |
|     runs-on: ubuntu-latest
 | |
|     name: Check licenses
 | |
|     steps:
 | |
|       - uses: actions/checkout@v4.1.6
 | |
|       - run: npm ci
 | |
|       - run: npm run licensed-check |