mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-31 01:50:01 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			950 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			950 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
|  # make sure the action works on a clean machine without building
 | |
| name: prod
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|       - 'releases/*'
 | |
| 
 | |
| jobs:
 | |
|   check:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Test wrapper
 | |
|       uses: ./
 | |
|       with:
 | |
|         wrapper-directory: __tests__/data/basic
 | |
|         build-root-directory: __tests__/data/basic
 | |
|         arguments: help
 | |
|     - name: Test dist download
 | |
|       uses: ./
 | |
|       with:
 | |
|         gradle-version: 6.5
 | |
|         build-root-directory: __tests__/data/basic
 | |
|         arguments: help
 | |
|     - name: Check for uncommitted changes
 | |
|       # Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed.
 | |
|       run: |
 | |
|         git diff --exit-code --stat -- . ':!node_modules' \
 | |
|         || (echo "##[error] found changed files after build. please 'npm run all'" \
 | |
|                  "and check in all changes" \
 | |
|             && exit 1)
 | 
