Skip to content

Commit 7103d6a

Browse files
author
Bryan Parker
committed
Adds docs build workflow
1 parent 024aced commit 7103d6a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build-docs.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Build Docs
2+
3+
on: push
4+
5+
jobs:
6+
build_docs:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-node@v3
11+
with:
12+
node-version: '21'
13+
- run: npm ci
14+
- run: npm run docs

0 commit comments

Comments
 (0)