Skip to content

consider wda provided by users for manual interaction this skips the … #55

consider wda provided by users for manual interaction this skips the …

consider wda provided by users for manual interaction this skips the … #55

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