Skip to content

[sync] feat(import): place imported tables under folder nodes T3116 #6801

[sync] feat(import): place imported tables under folder nodes T3116

[sync] feat(import): place imported tables under folder nodes T3116 #6801

Workflow file for this run

name: Linting and Types
on:
pull_request:
branches:
- develop
paths:
- 'apps/**'
- 'packages/**'
- 'plugins/**'
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.22.3]
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/**" -F "!@teable/v2-*" run build
- name: 🕵️ Typecheck
run: |
pnpm -r -F "./apps/**" -F "./packages/**" -F "./plugins" -F "!@teable/backend" -F "!@teable/v2-*" --workspace-concurrency=1 typecheck
pnpm -F "@teable/backend" exec tsc --project ./tsconfig.build.json --noEmit
- name: 🔬 Linter
run: |
pnpm -r -F "./apps/**" -F "./packages/**" -F "./plugins" -F "!@teable/backend" -F "!@teable/v2-*" -F "!@teable/db-data-prisma" -F "!@teable/i18n-keys" --parallel lint --color
pnpm -r -F "./apps/**" -F "./packages/**" -F "!@teable/v2-*" --if-present lint-styles --color