Skip to content

Fix _fetch_next_chunk for StreamProcessor due to cutting off output (… #140

Fix _fetch_next_chunk for StreamProcessor due to cutting off output (…

Fix _fetch_next_chunk for StreamProcessor due to cutting off output (… #140

Workflow file for this run

name: Run Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
if: matrix.node-version == '20.x'
with:
file: ./coverage/lcov.info
fail_ci_if_error: false