Update dependency com.microsoft.playwright:playwright to v1.50.0 #237
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: Playwright JUnit 5 Tests | |
on: | |
schedule: | |
- cron: '50 21 * * *' | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths: | |
- '**/playwright-examples/**' | |
- 'pom.*' | |
pull_request: | |
paths: | |
- '**/playwright-examples/**' | |
- 'pom.*' | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: axel-op/googlejavaformat-action@v3 | |
with: | |
args: "--replace" | |
files: "playwright-examples/**/*.java" | |
skip-commit: true | |
- name: Print diffs | |
if: success() || failure() | |
run: git --no-pager diff --exit-code | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: "temurin" | |
- name: Run JUnit 5 tests | |
working-directory: ./playwright-examples | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
run: mvn test |