Skip to content

Commit cd3c833

Browse files
authored
Merge pull request #2 from krystxf/feat/gh-actions
feat: GH actions build
2 parents 192caf0 + 5edbc66 commit cd3c833

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
on: push
3+
4+
jobs:
5+
build:
6+
name: Build
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: oven-sh/setup-bun@v1
11+
12+
- run: bun install
13+
- run: bun run build
14+
15+
build-docker:
16+
name: Build Docker Image
17+
runs-on: ubuntu-latest
18+
needs: build
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: oven-sh/setup-bun@v1
22+
23+
- run: bun install
24+
- run: bun run docker:build

0 commit comments

Comments
 (0)