We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46426b6 commit 292c72cCopy full SHA for 292c72c
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,38 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+permissions:
12
+ contents: read
13
14
+jobs:
15
+ test:
16
+ name: Test
17
+ runs-on: ubuntu-latest
18
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
23
+ - name: Setup Bun
24
+ uses: oven-sh/setup-bun@v2
25
+ with:
26
+ bun-version: 1.3.14
27
28
+ - name: Install dependencies
29
+ run: bun install --frozen-lockfile
30
31
+ - name: Run tests
32
+ run: bun run test
33
34
+ - name: Typecheck
35
+ run: bun run typecheck
36
37
+ - name: Build
38
+ run: bun run build
0 commit comments