feat(chat): add embedded assistant and MCP workflows #5242
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 typescript types | |
| 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: Build relevant packages | |
| run: | | |
| cd packages/markdown | |
| pnpm run build | |
| cd ../grading | |
| pnpm run build | |
| cd ../prisma | |
| pnpm run build | |
| cd ../types | |
| pnpm run build | |
| cd ../util | |
| pnpm run build | |
| cd ../graphql | |
| pnpm run build | |
| cd ../hatchet | |
| pnpm run build | |
| - name: Check the typescript types of all packages and apps | |
| shell: bash | |
| run: | | |
| pnpm run check |