We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c0aae8f + e7dfbbf commit a801ea8Copy full SHA for a801ea8
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ ci:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - uses: oven-sh/setup-bun@v2
17
18
+ - name: Install dependencies
19
+ run: bun install --frozen-lockfile
20
21
+ - name: Lint
22
+ run: bun run lint
23
24
+ - name: Typecheck & Build
25
+ run: bun run build
0 commit comments