set userBusy to fale when unexpected error occurs #49
Workflow file for this run
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
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 | |