Skip to content

feat(auth): auto-join organizations for self-hosted mode #386

feat(auth): auto-join organizations for self-hosted mode

feat(auth): auto-join organizations for self-hosted mode #386

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build packages
run: bun run build
- name: Run formatter check
run: bun run format --check
- name: Run type checking
run: bun run typecheck
- name: Run tests
run: bun test