Skip to content

feat: extend filtering support with date ranges, player ID, and autho… #69

feat: extend filtering support with date ranges, player ID, and autho…

feat: extend filtering support with date ranges, player ID, and autho… #69

Workflow file for this run

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