Skip to content

Implement dsp cmajor code for ride bell #17

Implement dsp cmajor code for ride bell

Implement dsp cmajor code for ride bell #17

Workflow file for this run

name: Run View Tests
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
paths:
- "view/**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install dependencies
working-directory: view
run: npm ci
- name: Run tests
working-directory: view
run: npm run test-ci
- name: Verify it builds
working-directory: view
run: npm run build