Skip to content

Keep API small by making parse an async generator. #11

Keep API small by making parse an async generator.

Keep API small by making parse an async generator. #11

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
timeout-minutes: 10
runs-on: ubuntu-latest
env:
WIREIT_LOGGER: 'quiet-ci'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm test
lint-and-format:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run format:check