Skip to content

Use try/catch in async iterator README example #31

Use try/catch in async iterator README example

Use try/catch in async iterator README example #31

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
node-version: [10.x, 20.x, 22.x, 24.x, 25.x]
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Use Nodejs ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run Tests
run: npm test