Skip to content

Commit

Permalink
chore: add docs compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Deivu committed Dec 21, 2023
1 parent 9d60577 commit 05cd34d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/docs-compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Docs Compile

on:
push:
branches:
- "v4"

jobs:
compile:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@17f8bd926464a1afa4c6a11669539e9c1ba77048 # tag=v3
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm run build:docs

0 comments on commit 05cd34d

Please sign in to comment.