Skip to content

Fix bug in IPC stream decoding when an empty batch is part of the stream #125

Fix bug in IPC stream decoding when an empty batch is part of the stream

Fix bug in IPC stream decoding when an empty batch is part of the stream #125

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20, 22]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install Node dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run tests
run: npm run test