build(deps): bump actions/setup-java from 5.4.0 to 5.5.0 in /.github/workflows #103
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Main PR Gate | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review # Draftを解除したとき | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| # Draftでは動作させない | |
| if: github.event.pull_request.draft == false | |
| env: | |
| GRADLE_OPTS: '-Dorg.gradle.daemon=false' | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v7 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5.5.0 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| - name: Install JS dependencies | |
| run: npm ci | |
| - name: Run JS tests | |
| run: npm run test | |
| - name: Run stylelint | |
| run: npm run lint:css | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Build | |
| run: ./gradlew build | |
| - name: Upload Failure Report | |
| uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: test-failure-reports | |
| path: jig-*/build/reports/tests/ | |
| retention-days: 3 |