Skip to content

fix android streaming when platform is both and also added support to… #84

fix android streaming when platform is both and also added support to…

fix android streaming when platform is both and also added support to… #84

Workflow file for this run

name: CI
on:
push:
branches:
- dashboard-ui
jobs:
buildWithSubmodule:
name: Build with Submodule
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.PAT_TOKEN }}
- 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
buildWithOutSubmodule:
name: Build with Out Submodule
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
- name: Run script
run: |
npm ci
npm run bundle