Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.

docs(app-invite): fix import paths #94

docs(app-invite): fix import paths

docs(app-invite): fix import paths #94

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.2.4 # Locked in package.json
- name: Install dependencies
run: bun install
- name: Lint
run: bun run lint
- name: Type check
run: bun run check-types
- name: Build
run: bun run build
- name: Test
run: bun run test
# Optional: Cache dependencies
- name: Cache Bun dependencies
uses: actions/cache@v3
with:
path: |
~/.bun/install/cache
node_modules
*/*/node_modules
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-