Skip to content

Bump org.testng:testng from 7.8.0 to 7.9.0 #285

Bump org.testng:testng from 7.8.0 to 7.9.0

Bump org.testng:testng from 7.8.0 to 7.9.0 #285

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
local-test:
runs-on: ubuntu-latest
services:
chrome:
image: selenium/standalone-chrome
options: --health-cmd '/opt/bin/check-grid.sh'
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 21
distribution: adopt
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B -q -DskipTests package --file pom.xml
- name: Run local tests
run: mvn -B -q test -Pweb-execution -Dsuite=local -Dtarget=local -Dheadless=true -Dbrowser=chrome