Skip to content

feat(httpresponse): support any async iterable #5

feat(httpresponse): support any async iterable

feat(httpresponse): support any async iterable #5

Workflow file for this run

name: Test matrix
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
test:
name: Test on Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16.13", "16", "18", "20", "22"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
- name: Upload coverage artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.node-version }}
path: coverage