feat(telemetry): add ClickHouse cold-tier and telemetry sharding support #5300
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: OpenAPI Spec Generation | |
| on: | |
| pull_request: | |
| push: | |
| branches-ignore: | |
| - 'hotfix-*' | |
| - 'release' | |
| jobs: | |
| generate-openapi-spec: | |
| runs-on: ubuntu-latest | |
| env: | |
| CI_PIPELINE_ID: ${{ github.run_number }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 26 | |
| cache: 'npm' | |
| - name: Install Common dependencies | |
| run: cd Common && npm install | |
| - name: Install root dependencies | |
| run: npm install | |
| - name: Install Script dependencies | |
| run: cd Scripts && npm install | |
| - name: Generate OpenAPI specification | |
| run: npm run generate-openapi-spec | |
| - name: Check if OpenAPI spec was generated | |
| run: | | |
| if [ -f "./openapi.json" ]; then | |
| echo "✅ OpenAPI spec file generated successfully" | |
| echo "📄 File size: $(du -h ./openapi.json | cut -f1)" | |
| echo "📊 Spec contains $(jq '.paths | length' ./openapi.json) API paths" | |
| echo "🏷️ API version: $(jq -r '.info.version' ./openapi.json)" | |
| echo "📝 API title: $(jq -r '.info.title' ./openapi.json)" | |
| else | |
| echo "❌ OpenAPI spec file was not generated" | |
| exit 1 | |
| fi | |
| - name: Validate OpenAPI spec format | |
| run: | | |
| # Check if the file is valid JSON | |
| if jq empty ./openapi.json; then | |
| echo "✅ OpenAPI spec is valid JSON" | |
| else | |
| echo "❌ OpenAPI spec is not valid JSON" | |
| exit 1 | |
| fi | |
| # Check if it has required OpenAPI fields | |
| if jq -e '.openapi and .info and .paths' ./openapi.json > /dev/null; then | |
| echo "✅ OpenAPI spec has required fields" | |
| else | |
| echo "❌ OpenAPI spec missing required fields (openapi, info, paths)" | |
| exit 1 | |
| fi | |
| - name: Upload OpenAPI spec as artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: openapi-spec | |
| path: ./openapi.json | |
| retention-days: 30 |