feat: extend filter FieldValue
to support custom
#1018
Workflow file for this run
This file contains 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: Unit Tests | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
paths: | |
- 'apps/nextjs-app/**' | |
- 'packages/core/**' | |
- 'packages/sdk/**' | |
- 'packages/openapi/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Unit Tests | |
strategy: | |
matrix: | |
node-version: [20.9.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: 🧪 Run Tests | |
run: | | |
pnpm -F "!@teable/backend" -r --parralel test-unit-cover | |
- name: Coveralls Parallel | |
uses: coverallsapp/github-action@v2 | |
with: | |
flag-name: run-${{ join(matrix.*, '-') }} | |
parallel: true | |
finish: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@v2 | |
with: | |
parallel-finished: true |