Skip to content

Commit 8d9f9b1

Browse files
committed
chore: add ci
Signed-off-by: Rodney Osodo <socials@rodneyosodo.com>
1 parent 5eefcaf commit 8d9f9b1

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Continuous Integration
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
pull_request:
9+
branches:
10+
- main
11+
12+
jobs:
13+
ci:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- uses: oven-sh/setup-bun@v2
21+
with:
22+
bun-version: latest
23+
24+
- name: Install Dependencies
25+
run: bun install
26+
27+
- name: Run Lint
28+
run: bun run lint
29+
30+
- name: Run Build
31+
run: bun run build

0 commit comments

Comments
 (0)