We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3d391c commit a4f6cccCopy full SHA for a4f6ccc
.github/workflows/ci.yaml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ Check:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v6
15
16
+ - name: Install Bun
17
+ uses: oven-sh/setup-bun@v2
18
+ with:
19
+ bun-version: 1.2.23
20
21
+ - name: Install dependencies
22
+ run: bun install
23
24
+ - name: Run typecheck
25
+ run: bun typecheck
26
27
+ - name: Build
28
+ run: bun run build
tsconfig.json
@@ -6,5 +6,6 @@
"outDir": "dist",
"strict": true,
"types": ["bun", "node"],
+ "skipLibCheck": true
}
0 commit comments