feat: extend filtering support with date ranges, player ID, and autho… #69
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: Validate OpenAPI and SDK Tools | |
| on: | |
| push: | |
| paths: | |
| - "openapi/**" | |
| - "package.json" | |
| - "pnpm-lock.yaml" | |
| - "redocly.yaml" | |
| - "sdks/*/postprocess.ts" | |
| - "tsconfig.json" | |
| - ".github/workflows/openapi-lint.yaml" | |
| pull_request: | |
| paths: | |
| - "openapi/**" | |
| - "package.json" | |
| - "pnpm-lock.yaml" | |
| - "redocly.yaml" | |
| - "sdks/*/postprocess.ts" | |
| - "tsconfig.json" | |
| - ".github/workflows/openapi-lint.yaml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint OpenAPI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint OpenAPI specification | |
| run: pnpm openapi:lint | |
| - name: Type-check SDK generation tools | |
| run: pnpm typecheck:sdk-tools |