Skip to content

Commit

Permalink
chore: add workflow for main and PR (#1498)
Browse files Browse the repository at this point in the history
* add workflow for main and PR

Co-authored-by: Saikrishna321 <[email protected]>

* Run test on PR without submodules

Co-authored-by: SrinivasanTarget <[email protected]>

* Try again

Co-authored-by: SrinivasanTarget <[email protected]>

* Try again

Co-authored-by: SrinivasanTarget <[email protected]>

---------

Co-authored-by: Saikrishna321 <[email protected]>
  • Loading branch information
SrinivasanTarget and saikrishna321 authored Jan 3, 2025
1 parent 878f5b7 commit 9524846
Show file tree
Hide file tree
Showing 2 changed files with 228 additions and 1 deletion.
225 changes: 225 additions & 0 deletions .github/workflows/prtest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,225 @@
name: PR-CI

on:
pull_request:

jobs:
buildWithSubmodule:
name: Run Unit Test
runs-on: macos-latest
strategy:
matrix:
node: [20]

steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17

- name: Setup Android SDK
uses: android-actions/[email protected]
- name: Run script
run: |
# Add your script commands here
npm ci
npm run bundle
- name: Run Unit Test
run: |
# Add your script commands here
npm test
HubWithNoPlatform:
name: Run E2E Plugin Test
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]

steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
- name: Build
run: |
# Add your script commands here
npm ci
npm run bundle
- name: Run E2E Plugin Test without Platform
run: |
# Add your script commands here
npm run test-e2e
buildWithOutSubmodule:
name: Build with Out Submodule
runs-on: macos-latest
strategy:
matrix:
node: [20]

steps:
- name: Checkout repository with out submodule
uses: actions/checkout@v3
- name: Run script
run: |
npm ci
npm run bundle
AndroidIntegrationTest:
name: Run Android Integration Test
runs-on: ubuntu-latest
strategy:
matrix:
api-level: [29]
target: [google_apis]
steps:
- name: checkout
uses: actions/checkout@v4
- name: Build
run: |
npm ci
npm run bundle
- name: Enable KVM
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: run tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
arch: x86_64
profile: Nexus 6
script: npm run integration-android
E2EHubAndNodeTest:
name: Run E2EHubAndNodeTest
runs-on: ubuntu-latest
strategy:
matrix:
api-level: [ 29 ]
target: [ google_apis ]
steps:
- name: checkout
uses: actions/checkout@v4
- name: Build
run: |
npm ci
npm run bundle
- name: Enable KVM
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: run tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
arch: x86_64
profile: Nexus 6
script: npm run test-e2e-hubnode
IOSIntegrationTest:
name: Run iOS Integration Test
runs-on: macos-latest
strategy:
matrix:
node: [ 20 ]

steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
- name: Build
run: |
npm ci
npm run bundle
- 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
- 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
- name: Build
run: |
npm ci
npm run bundle
- name: Run BrowserStack Test
run: |
CLOUD_USERNAME=${{ secrets.BS_USERNAME }} CLOUD_KEY=${{ secrets.BS_PASSWORD }} BS_ANDROID_CLOUD_APP=${{ secrets.BS_ANDROID_CLOUD_APP }} npm run test-parallel-bs
BrowserStackTest_Linux:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 20 ]
steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17

- name: Setup Android SDK
uses: android-actions/[email protected]
- name: Build
run: |
npm ci
npm run bundle
- name: Run BrowserStack Test
run: |
CLOUD_USERNAME=${{ secrets.BS_USERNAME }} CLOUD_KEY=${{ secrets.BS_PASSWORD }} BS_IOS_CLOUD_APP=${{ secrets.BS_IOS_CLOUD_APP }} npm run test-parallel-ios-bs
LambdaTest:
runs-on: macos-latest
strategy:
matrix:
node: [ 20 ]

steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
- name: Build
run: |
npm ci
npm run bundle
- name: Run LT Test
run: |
CLOUD_USERNAME=${{ secrets.LT_USERNAME }} CLOUD_KEY=${{ secrets.LT_PASSWORD }} LT_CLOUD_APP=${{ secrets.LT_CLOUD_APP }} npm run test-parallel-lt
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: CI

on:
pull_request:
push:
branches:
- main

jobs:
buildWithSubmodule:
Expand Down

0 comments on commit 9524846

Please sign in to comment.