Skip to content

docs(config): document maxIterations option #47

docs(config): document maxIterations option

docs(config): document maxIterations option #47

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-check:
name: Build Check (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.5.4
- name: Format check
run: deno fmt --check src/
- name: Lint
run: deno lint src/
- name: Type check
run: deno check src/
- name: Test
run: deno test tests/ --allow-read