Skip to content

Commit e44173e

Browse files
committed
Set up GitHub Actions workflow for building the project
1 parent 3d8739c commit e44173e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build
2+
3+
on: [ push, pull_request ]
4+
5+
jobs:
6+
build-and-start:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
- name: Setup Bun
12+
uses: oven-sh/setup-bun@v2
13+
with:
14+
bun-version: latest
15+
- name: Install dependencies
16+
run: bun install
17+
- name: Build
18+
run: bun run build

0 commit comments

Comments
 (0)