We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eefcaf commit 8d9f9b1Copy full SHA for 8d9f9b1
.github/workflows/ci.yaml
@@ -0,0 +1,31 @@
1
+name: Continuous Integration
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+ pull_request:
9
10
11
12
+jobs:
13
+ ci:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
20
+ - uses: oven-sh/setup-bun@v2
21
+ with:
22
+ bun-version: latest
23
24
+ - name: Install Dependencies
25
+ run: bun install
26
27
+ - name: Run Lint
28
+ run: bun run lint
29
30
+ - name: Run Build
31
+ run: bun run build
0 commit comments