mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-27 16:09:59 +08:00 
			
		
		
		
	 6fcc109efa
			
		
	
	
		6fcc109efa
		
			
		
	
	
	
	
		
			
			### Github Action updates Updates `gradle/gradle-build-action` from 2.8.0 to 2.8.1 ### NPM updates Updates `@octokit/webhooks-types` from 7.3.0 to 7.3.1 - [Release notes](https://github.com/octokit/webhooks/releases) - [Commits](https://github.com/octokit/webhooks/compare/v7.3.0...v7.3.1) Updates `@typescript-eslint/parser` from 6.7.2 to 6.7.3 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.7.3/packages/parser) Updates `eslint` from 8.49.0 to 8.50.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.49.0...v8.50.0)
		
			
				
	
	
		
			27 lines
		
	
	
		
			665 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			665 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: CI-init-script-check
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     paths:
 | |
|       - '.github/workflows/ci-init-script-check.yml'
 | |
|       - 'src/resources/init-scripts/**'
 | |
|       - 'test/init-scripts/**'
 | |
|   workflow_dispatch:
 | |
| 
 | |
| jobs:
 | |
|   test-init-scripts:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v4
 | |
|     - name: Setup Java
 | |
|       uses: actions/setup-java@v3
 | |
|       with:
 | |
|         distribution: temurin
 | |
|         java-version: 8
 | |
|     - name: Setup Gradle
 | |
|       uses: gradle/gradle-build-action@v2.8.1 # Use a released version to avoid breakages
 | |
|     - name: Run integration tests
 | |
|       working-directory: test/init-scripts
 | |
|       run: ./gradlew check
 |