feat(chat): add embedded assistant and MCP workflows #927
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: Check syncpack conformity | |
| on: | |
| push: | |
| branches: ['v3', 'v3*'] | |
| paths: | |
| - apps/** | |
| - packages/** | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - apps/** | |
| - packages/** | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }} | |
| cancel-in-progress: true | |
| env: | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
| TURBO_REMOTE_ONLY: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.15.0 | |
| run_install: true | |
| - name: Check the syncpack conformity of all packages and apps | |
| shell: bash | |
| run: | | |
| pnpm run check:syncpack |