Merge pull request #2067 from markscott-ms/maintainers #2556
This file contains hidden or 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 | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: | |
| - 'main' | |
| - 'release*' | |
| push: | |
| branches: | |
| - 'main' | |
| - 'release*' | |
| jobs: | |
| docs: | |
| name: Build Docs Module | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout PR Branch | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6 | |
| with: | |
| node-version: v22 | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| - name: Install workspace | |
| run: npm ci | |
| - name: Build Docs | |
| run: npm run build:docs |