Skip to content

Commit 0266aca

Browse files
committed
chore(github workflow): setup ci.yaml
1 parent f002018 commit 0266aca

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
# 1. get our repo
14+
- uses: actions/checkout@v5
15+
16+
# 2. install bun
17+
- name: Setup Bun
18+
uses: oven-sh/bun-action@v2
19+
with:
20+
bun-version: latest
21+
# 3. install dependencies
22+
- name: Install dependencies
23+
run: bun install
24+
25+
# 4. lint + format
26+
- name: Run Biome lint & format
27+
run: bun run check

0 commit comments

Comments
 (0)