fix: strip whitespace from oauth header values #552
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: CI (docs) | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/ci-docs.yml" | |
| - ".github/workflows/docs-pages.yml" | |
| - "docs/**" | |
| - "CHANGELOG.md" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/ci-docs.yml" | |
| - ".github/workflows/docs-pages.yml" | |
| - "docs/**" | |
| - "CHANGELOG.md" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Cache docs node_modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: docs/node_modules | |
| key: ${{ runner.os }}-docs-node-modules-${{ hashFiles('docs/package.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-docs-node-modules- | |
| - name: Install docs dependencies | |
| working-directory: docs | |
| run: npm install --no-package-lock | |
| - name: Build docs | |
| working-directory: docs | |
| run: npm run build |