Skip to content

Updated serenity

Updated serenity #6

Workflow file for this run

name: 'BrowserStack Distributed Tests'
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'BrowserStack Env Setup'
uses: 'browserstack/github-actions/setup-env@master'
with:
username: ${{ secrets.BROWSERSTACK_USERNAME }}
access-key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
build-name: 'BUILD_INFO'
project-name: 'REPO_NAME'
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
# - name: Install Chrome for Testing and its driver
# run: |
# npm i puppeteer
# npx @puppeteer/browsers install chrome@stable
- name: Build with Maven
run: mvn verify --file pom.xml
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages # The branch the action should deploy to.
folder: target/site/serenity # The folder the action should deploy.