Skip to content

Commit

Permalink
ci(docs): Build checks
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed Nov 3, 2024
1 parent 7ea60b6 commit 87c31fb
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/continuous-integration-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Continuous Integration - Documentation

on:
pull_request:
path:
- 'docs/**'
push:
paths:
- 'docs/**'


jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: yarn
cache-dependency-path: "yarn.lock"
- name: Install dependencies
run: yarn install --immutable
- name: Build with VitePress
run: yarn workspace docs run build

0 comments on commit 87c31fb

Please sign in to comment.