meshcore.js/.github/workflows/test.yml
Michael Lynch 94fe294ec2 Add unit tests for parsing connection frames
There's a bit of complexity in byte-level parsing of serial/BLE frames, so I thought it would be helpful to add unit tests to ensure correct behavior.
2026-01-02 16:52:22 -05:00

14 lines
232 B
YAML

name: Run tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm test