Skip to content

fix: closing and opening parenthesis should be serialized #255

fix: closing and opening parenthesis should be serialized

fix: closing and opening parenthesis should be serialized #255

Workflow file for this run

name: Build and test library
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version-file: .bun-version
- name: Install dependencies
run: bun install
- name: Build library
run: bun run build
- name: Check types
run: bun run check:typescript
- name: Check linting
run: bun run lint
- name: Check formatting
run: bun run check:format
- name: Check circular dependencies
run: bun run circular:check
- name: Run tests
run: bun run test