Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.0 to 3.5.1 #256

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.0 to 3.5.1

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.0 to 3.5.1 #256

Workflow file for this run

name: Docker Selenium CI
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build Project
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get current date
id: date
run: echo "NOW=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_ENV
- name: Echo date variable
run: echo $NOW
- name: Build the Docker image
run: docker build . --file DockerfileBrowser --tag browserdockerci:$NOW --build-arg CHROME_VERSION=123.0.6312.107-1
- name: Run the tests in the Docker image
run: docker run -t -v $(pwd):/usr/tests/src -w /usr/tests/src browserdockerci:$NOW mvn clean test -Pdev_bdd -Dtestng.dtd.http=true