Skip to content

Bump org.slf4j:slf4j-api from 2.0.12 to 2.0.13 #127

Bump org.slf4j:slf4j-api from 2.0.12 to 2.0.13

Bump org.slf4j:slf4j-api from 2.0.12 to 2.0.13 #127

Workflow file for this run

name: Selenium Java CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11
- name: Install Google Chrome
run: |
chmod +x ./script/install_chrome.sh
./script/install_chrome.sh
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run Smoke Tests in Chrome
run: ./gradlew test --info -Dgroups=smoke
- name: Run Regression Tests in Chrome
run: ./gradlew test --info -Dgroups=regression