#446 - Upgrade CLI to 2024-10. (#696) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docs | |
on: | |
pull_request: | |
branches: | |
- "main" | |
paths: | |
- "docs/**" | |
push: | |
branches: | |
- "main" | |
paths: | |
- "docs/**" | |
jobs: | |
docs: | |
name: Build Docs Module | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PR Branch | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: v20 | |
- name: Install workspace | |
run: npm ci | |
- name: Build Docs | |
run: npm run build:docs |