Bump fast-uri from 3.1.0 to 3.1.5 in /docs #87
Workflow file for this run
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: Docs PR validation | |
| on: | |
| pull_request: | |
| paths: | |
| - "docs/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-docs: | |
| name: Build documentation | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: docs | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: docs/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Tailwind CSS | |
| run: npm install tailwindcss@3 | |
| - name: Build API docs | |
| run: npx docusaurus gen-api-docs all | |
| - name: Build website | |
| run: npm run build |