Skip to content

feat: add semantic-release automation and contributor setup (#1) #17

feat: add semantic-release automation and contributor setup (#1)

feat: add semantic-release automation and contributor setup (#1) #17

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Lint
run: bun run lint
- name: Type check
run: bun run typecheck
- name: Build
run: bun run build