Skip to content

Commit d739412

Browse files
committed
CI: add workflow for testing website build on PRs
1 parent 727b984 commit d739412

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test-website.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Test Website
2+
3+
on:
4+
pull_request:
5+
jobs:
6+
build:
7+
name: Build
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Check out code
11+
uses: actions/checkout@v4
12+
13+
- name: Setup Zig Compiler
14+
uses: mlugg/setup-zig@v2
15+
16+
- name: Build the website
17+
run: zig build --summary new

0 commit comments

Comments
 (0)