Skip to content

Commit 147a7af

Browse files
eXpl0it3rrobmen
authored andcommitted
Add basic GitHub Actions steps
1 parent 6caed19 commit 147a7af

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build Docs
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-24.04
8+
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
- name: Setup PNPM
13+
uses: pnpm/action-setup@v4
14+
with:
15+
version: latest
16+
- name: Setup Node
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 22
20+
- name: Install
21+
run: pnpm install
22+
- name: Build
23+
run: pnpm build

0 commit comments

Comments
 (0)