Skip to content

Commit

Permalink
ci: Introduce ci build for docs. (#56)
Browse files Browse the repository at this point in the history
* ci: introduce ci build for docs

* introduce link issue

* Revert "introduce link issue"

This reverts commit 75b50a4.
  • Loading branch information
SandPod authored Jan 18, 2024
1 parent a150d90 commit fd88e31
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Docusaurus build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-build:
name: Test build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build

0 comments on commit fd88e31

Please sign in to comment.