mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-30 01:20:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			605 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			605 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Verify generated outputs
 | |
| 
 | |
| 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: 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)
 | 
