-
-
Notifications
You must be signed in to change notification settings - Fork 90
33 lines (26 loc) · 813 Bytes
/
Copy pathci.yml
File metadata and controls
33 lines (26 loc) · 813 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
32
33
name: CI
# v2 is archived. This repo now carries the issue tracker and the locale
# catalogs; code PRs are lint + typecheck only. No compile gate, no Windows
# bundles, no installers — releases are cut from v3 (private).
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
with:
bun-version: "1.3.13"
- run: bun install --frozen-lockfile
- name: Lint
run: bunx biome check src/ --reporter=github
- name: Typecheck
run: bun run typecheck