[Platform] Split bridges into dedicated packages #286
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 | |
| on: | |
| push: | |
| paths: | |
| - 'src/*/src/Bridge/**/composer.json' | |
| - 'src/ai-bundle/config/options.php' | |
| - 'splitsh.json' | |
| - '.github/workflows/validation.yaml' | |
| - '.github/scripts/validate-bridge-naming.sh' | |
| - '.github/scripts/validate-bridge-splitsh.sh' | |
| pull_request: | |
| paths: | |
| - 'src/*/src/Bridge/**/composer.json' | |
| - 'src/ai-bundle/config/options.php' | |
| - 'splitsh.json' | |
| - '.github/workflows/validation.yaml' | |
| - '.github/scripts/validate-bridge-naming.sh' | |
| - '.github/scripts/validate-bridge-splitsh.sh' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate_stores: | |
| name: Store Bridges | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Validate store bridge naming conventions | |
| run: .github/scripts/validate-bridge-naming.sh store store src/ai-bundle/config/options.php | |
| - name: Validate store bridges are in splitsh.json | |
| run: .github/scripts/validate-bridge-splitsh.sh store | |
| validate_tools: | |
| name: Tool Bridges | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Validate tool bridge naming conventions | |
| run: .github/scripts/validate-bridge-naming.sh tool agent | |
| - name: Validate tool bridges are in splitsh.json | |
| run: .github/scripts/validate-bridge-splitsh.sh tool agent | |
| validate_platforms: | |
| name: Platform Bridges | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Validate platform bridge naming conventions | |
| run: .github/scripts/validate-bridge-naming.sh platform platform | |
| - name: Validate platform bridges are in splitsh.json | |
| run: .github/scripts/validate-bridge-splitsh.sh platform |