Skip to content

Commit

Permalink
Updated build job
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Dec 3, 2023
1 parent ab67122 commit bef0004
Showing 1 changed file with 30 additions and 28 deletions.
58 changes: 30 additions & 28 deletions .github/workflows/browserstack.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,36 @@
- 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'
name: 'BrowserStack Distributed Tests'
on: [push, pull_request]

jobs:
build:
jobs:
build:
runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- 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: 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: Build with Maven
run: mvn verify --file pom.xml

- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: target/site/serenity # The folder the action should deploy.
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: target/site/serenity # The folder the action should deploy.

0 comments on commit bef0004

Please sign in to comment.