mirror of
https://github.com/meshcore-dev/meshcore.js.git
synced 2026-04-20 22:13:49 +00:00
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.
14 lines
232 B
YAML
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
|