Skip to content

feat(replicate): add CRDT bindings for counter, register, and set types #52

feat(replicate): add CRDT bindings for counter, register, and set types

feat(replicate): add CRDT bindings for counter, register, and set types #52

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
name: Lint & Type Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build packages
run: bun run build:packages
- name: Lint
run: bun run lint
- name: Type check
run: bun run check