Bump @babel/plugin-transform-modules-systemjs from 7.23.0 to 7.29.4 in /integration-tests/src/main/ui-react #1818
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: Build and Test Java Application | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| paths-ignore: | |
| - '.gitignore' | |
| - 'CODEOWNERS' | |
| - 'LICENSE' | |
| - '*.md' | |
| - '*.adoc' | |
| - '*.txt' | |
| - '.all-contributorsrc' | |
| pull_request: | |
| paths-ignore: | |
| - '.gitignore' | |
| - 'CODEOWNERS' | |
| - 'LICENSE' | |
| - '*.md' | |
| - '*.adoc' | |
| - '*.txt' | |
| - '.all-contributorsrc' | |
| jobs: | |
| build-linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Get Date | |
| id: get-date | |
| run: | | |
| echo "date=$(/bin/date -u "+%Y-%m")" >> $GITHUB_OUTPUT | |
| shell: bash | |
| - name: Cache Maven Repository | |
| id: cache-maven | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.m2/repository | |
| # resulting in faster build times. | |
| key: maven-repo-${{ runner.os }}-${{ hashFiles('**/pom.xml') }} | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - name: Install bun | |
| run: npm install -g bun | |
| - name: Maven Version | |
| run: ./mvnw --version | |
| - name: Ensure browsers are installed | |
| working-directory: testing | |
| run: ../mvnw exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install-deps chromium" | |
| - name: Build with Maven | |
| run: ./mvnw -B formatter:validate install --file pom.xml | |
| - name: Build with Maven (Native) | |
| run: ./mvnw -B install -Dnative -Dquarkus.native.container-build -Dnative.surefire.skip | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Get Date | |
| id: get-date | |
| run: | | |
| echo "date=$(/bin/date -u "+%Y-%m")" >> $GITHUB_OUTPUT | |
| shell: bash | |
| - name: Cache Maven Repository | |
| id: cache-maven | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.m2/repository | |
| # resulting in faster build times. | |
| key: maven-repo-${{ runner.os }}-${{ hashFiles('**/pom.xml') }} | |
| - name: Install pnpm | |
| run: npm install -g pnpm@~8.6.12 | |
| - name: Install bun | |
| run: npm install -g bun | |
| - name: Maven Version | |
| run: ./mvnw --version | |
| - name: Ensure browsers are installed | |
| working-directory: testing | |
| run: ../mvnw exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install-deps chromium" | |
| - name: Build with Maven | |
| run: ./mvnw -B clean install --file pom.xml |