Skip to content

Go back to enumerating HTML5 child nodes when added, and adding event listeners to them #4763

Go back to enumerating HTML5 child nodes when added, and adding event listeners to them

Go back to enumerating HTML5 child nodes when added, and adding event listeners to them #4763

Workflow file for this run

# This workflow will build a Java project with Gradle for verification purposes
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build Verification
on:
push:
branches:
- main
- develop
- feature*
- release*
pull_request:
branches:
- main
- develop
- feature*
- release*
merge_group:
branches:
- develop
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: "20"
- name: spotlessCheck
run: ./gradlew spotlessCheck
build:
name: ${{ matrix.os }} w/JDK ${{ matrix.java }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
java: [ '20' ]
distribution: [ 'temurin']
fail-fast: false
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
- name: Cache Gradle
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
#- name: Junit Report to Annotations
# uses: ashley-taylor/[email protected]
- name: Build with Gradle
uses: GabrielBB/[email protected]
with:
run: ./gradlew build --no-daemon