We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e2ae3a + 1643d31 commit b8189e0Copy full SHA for b8189e0
4 files changed
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ push:
8
9
10
11
+jobs:
12
+ build:
13
+ name: Build Documentation
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout repository
18
+ uses: actions/checkout@v4
19
20
+ - name: Setup Bun
21
+ uses: oven-sh/setup-bun@v1
22
+ with:
23
+ bun-version: latest
24
25
+ - name: Install dependencies
26
+ run: bun install
27
28
+ - name: Build documentation
29
+ run: bun run build
30
31
+ - name: Build blog
32
+ run: bun run build:blog
0 commit comments