mirror of
				https://hub.gitmirror.com/https://github.com/actions/setup-java.git
				synced 2025-10-29 00:50:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			498 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			498 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Main workflow
 | |
| on: [push]
 | |
| jobs:
 | |
|   run:
 | |
|     name: Run
 | |
|     runs-on: ${{ matrix.operating-system }}
 | |
|     strategy:
 | |
|       matrix:
 | |
|         operating-system: [ubuntu-latest, windows-latest]
 | |
|     steps:
 | |
|     - name: Checkout
 | |
|       uses: actions/checkout@master
 | |
| 
 | |
|     - name: Set Node.js 10.x
 | |
|       uses: actions/setup-node@master
 | |
|       with:
 | |
|         version: 10.x
 | |
| 
 | |
|     - name: npm install
 | |
|       run: npm install
 | |
| 
 | |
|     - name: Lint
 | |
|       run: npm run format-check
 | |
| 
 | |
|     - name: npm test
 | |
|       run: npm test
 | 
