[sync] feat: strip thinking blocks on model switch & restore chat history T3152 #5807
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: Linting and Types | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| paths: | |
| - 'apps/**' | |
| - 'packages/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Linting and Types | |
| strategy: | |
| matrix: | |
| node-version: [22.18.0] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: 📥 Monorepo install | |
| uses: ./.github/actions/pnpm-install | |
| - name: 🧩 Generate Prisma Client | |
| working-directory: packages/db-main-prisma | |
| run: | | |
| pnpm -F @teable/db-main-prisma prisma-generate --schema ./prisma/postgres/schema.prisma | |
| - name: 🏗 Run build | |
| run: | | |
| pnpm -F "./packages/**" run build | |
| - name: 🕵️ Typecheck | |
| run: | | |
| pnpm g:typecheck | |
| - name: 🔬 Linter | |
| run: | | |
| pnpm g:lint | |
| pnpm g:lint-styles |