mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-30 01:20:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			392 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			392 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: dev
 | |
| 
 | |
| on:
 | |
|   pull_request:
 | |
|   push:
 | |
| 
 | |
| jobs:
 | |
|   check:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Build
 | |
|       run: |
 | |
|         npm install
 | |
|         npm run all
 | |
|     - name: Test
 | |
|       uses: ./
 | |
|       with:
 | |
|         wrapper-directory: __tests__/data/basic
 | |
|         build-root-directory: __tests__/data/basic
 | |
|         arguments: help
 | 
