Add ScrollOption support for Java #223
Workflow file for this run
This file contains 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: Java (build) | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'visual-java/**' | |
- .github/workflows/java-build.yml | |
pull_request: | |
paths: | |
- 'visual-java/**' | |
- .github/workflows/java-build.yml | |
defaults: | |
run: | |
working-directory: visual-java | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: ['8', '11'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.version }} | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
if: matrix.version == '8' | |
- name: Build and Lint with Maven | |
run: mvn -B verify --file pom.xml | |
if: matrix.version == '11' | |
integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push to local registry | |
uses: docker/build-push-action@v5 | |
with: | |
context: '{{defaultContext}}:visual-java' | |
tags: saucelabs/visual-java | |
file: Dockerfile | |
load: true | |
- name: Run the integration tests | |
run: | | |
npm ci | |
npm run test | |
working-directory: tests | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
CONTAINER_IMAGE_NAME: saucelabs/visual-java |