Skip to content

Commit b8189e0

Browse files
author
Lugh (Druid Bot)
committed
Merge branch 'master' into mc-top-10
2 parents 5e2ae3a + 1643d31 commit b8189e0

4 files changed

Lines changed: 3143 additions & 10014 deletions

File tree

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
push:
8+
branches:
9+
- master
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

Comments
 (0)