Feat: query api for plan details (#23) #20
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: Visual Debugger CI | |
on: | |
push: | |
branches: | |
- staging | |
pull_request: | |
branches: | |
- staging | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: ./visual-debugger | |
jobs: | |
vdb-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: "npm install -f" | |
- name: Run svelte-check | |
run: "npm run check" | |
vdb-unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: "npm install -f" | |
- name: Run unit tests | |
run: "npm run test:unit" | |
# vdb-integration: | |
# - uses: actions/checkout@v4 | |
# - uses: actions/setup-node@v4 | |
# with: | |
# node-version: 20 | |
# - name: Install dependencies | |
# run: "npm install -f" | |
# - name: Run integration tests | |
# continue-on-error: true | |
# run: "npm run test:integration" |