Skip to content

Commit 7f55561

Browse files
authored
Merge pull request #7 from xenharmonic-devs/ci
Add continuous integration
2 parents b6fff91 + 14463ff commit 7f55561

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/bun.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Bun CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test:
11+
name: test
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: oven-sh/setup-bun@v2
16+
- run: bun install
17+
- run: bun test

0 commit comments

Comments
 (0)