Skip to content

Commit

Permalink
update appium peer depedency
Browse files Browse the repository at this point in the history
  • Loading branch information
saikrishna321 committed May 6, 2024
1 parent a5efa93 commit 086fb4e
Show file tree
Hide file tree
Showing 4 changed files with 1,317 additions and 364 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,56 @@ jobs:
- name: Run iOS Integration Test
run: |
npm run integration-ios



E2EPluginTest:
name: Run Plugin Test
runs-on: macos-latest
strategy:
matrix:
node: [ 20 ]

steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.PAT_TOKEN }}
- name: Build
run: |
npm ci
npm run bundle
- name: Run e2e plugin Test
run: |
npm run test-e2e
- name: Run E2E BrowserStack Test
run: |
npm run test-e2e-browserstack
- name: Run E2E PCloudy Test
run: |
npm run test-e2e-pcloudy
BrowserStackTest:
runs-on: macos-latest
strategy:
matrix:
node: [ 20 ]

steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.PAT_TOKEN }}
- name: Build
run: |
npm ci
npm run bundle
- name: Run BrowserStack Test
run: |
export CLOUD_USERNAME=$BS_USERNAME
export CLOUD_KEY=$BS_PASSWORD
export BS_ANDROID_CLOUD_APP=$BS_ANDROID_CLOUD_APP
npm run test-parallel-bs
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
trigger:
- dashboard-ui
- dashboard-module

jobs:
- job: E2EPluginTest
Expand Down
Loading

0 comments on commit 086fb4e

Please sign in to comment.