chore(main): release 0.34.0 #399
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: Docs Format Snapshot | |
| # Asserts that the docs tables for OutputFormat and RequestedRenderer, and the | |
| # OpenAPI ScrapeRequest.formats enum, list exactly the variants defined in | |
| # crates/crw-core/src/types.rs. | |
| # | |
| # Triggers on: any push to main, any PR that touches the Rust types or either | |
| # doc. Does NOT modify docs-guards.sh or docs-guards.yml. | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "crates/crw-core/src/types.rs" | |
| - "docs/docs/output-formats.md" | |
| - "docs/docs/js-rendering.md" | |
| - "docs/openapi.json" | |
| - "crates/crw-server/openapi/**" | |
| - "scripts/check-format-tables.sh" | |
| permissions: | |
| contents: read | |
| jobs: | |
| format-snapshot: | |
| name: OutputFormat / RequestedRenderer table drift check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Check OutputFormat and RequestedRenderer table parity | |
| run: bash scripts/check-format-tables.sh |