Skip to content

Commit 5903692

Browse files
committed
Add CI
1 parent 70883e6 commit 5903692

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/main.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Continuous Integration
2+
on: [push]
3+
4+
jobs:
5+
build:
6+
name: Build and test
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: oven-sh/setup-bun@v1
11+
- run: bun install --frozen-lockfile
12+
- run: bun run build
13+
- run: bun run test

0 commit comments

Comments
 (0)