Skip to content

docs: stop exposing how a conversion is produced #2

docs: stop exposing how a conversion is produced

docs: stop exposing how a conversion is produced #2

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm typecheck
- run: pnpm lint
- run: pnpm exec prettier --check 'src/**/*.ts' 'tests/**/*.ts'
- run: pnpm test:unit
- run: pnpm test:integration
# e2e drives the built binary, so it has to come after the build.
- run: pnpm build
- run: pnpm test:e2e
- name: Verify the version constant matches package.json
run: node scripts/sync-version.mjs --check