feat: improve OpenId Configuration fetching to prevent DoS #724
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: Playground CI | |
| on: | |
| pull_request: | |
| paths: | |
| - 'pnpm-lock.yaml' | |
| - 'playground/**/*' | |
| - '.github/workflows/playground-ci.yaml' | |
| concurrency: | |
| group: ${{github.workflow}}-${{github.head_ref}} | |
| cancel-in-progress: true | |
| env: | |
| CI: true | |
| DO_NOT_TRACK: '1' | |
| jobs: | |
| build_test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/node | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build for router | |
| run: pnpm run --filter ./playground build:router | |
| - uses: ./.github/actions/git-dirty-check | |
| with: | |
| package-name: playground | |
| - name: Build as plugin | |
| run: pnpm run --filter ./playground build |