Skip to content

Merge pull request #38 from lesquel/fix/codex-permission-dashboard #91

Merge pull request #38 from lesquel/fix/codex-permission-dashboard

Merge pull request #38 from lesquel/fix/codex-permission-dashboard #91

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Cache Bun install
uses: actions/cache@v4
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-
- run: bun install --frozen-lockfile
- run: bun run typecheck
- run: bun test
- run: bun run lint