-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |