forked from supermemoryai/openclaw-supermemory
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (24 loc) · 639 Bytes
/
Copy pathci.yml
File metadata and controls
31 lines (24 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: CI - Type Check, Format & Lint
on:
pull_request:
jobs:
quality-checks:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.17
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Setup Biome
uses: biomejs/setup-biome@v2
with:
version: 2.3.8
- name: Run TypeScript type checking
run: bun run check-types
- name: Run Biome CI (format & lint)
run: biome ci .