Skip to content

feat: web support (#5) #32

feat: web support (#5)

feat: web support (#5) #32

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
merge_group:
types:
- checks_requested
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install
run: bun install --frozen-lockfile
- name: Typecheck files
run: bun typecheck
- name: Lint files
run: bun lint
- name: Build package
run: bun prepare