feat(pbs): load relay headers from a secret file or env var #977
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: Test Deploy Docs | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| # config.example.toml is linked from docs/ and bundled into the build, so | |
| # a PR that changes or removes it must run the build check | |
| - 'docs/**' | |
| - 'config.example.toml' | |
| - '.github/workflows/test-docs.yml' | |
| - '.github/workflows/docs.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| test-deploy: | |
| name: Test deployment | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| cache-dependency-path: docs/package-lock.json | |
| - name: Install dependencies | |
| # npm ci = reproducible install from package-lock.json | |
| run: npm ci | |
| working-directory: ./docs | |
| - name: Test build website | |
| run: npm run build | |
| working-directory: ./docs |