feat: add tsvector and websearch support for query search #43
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: Web Dashboard Checks | |
| on: | |
| push: | |
| paths-ignore: | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - 'src/**' | |
| - 'pg_impl/**' | |
| - 'api-service/**' | |
| - '*.md' | |
| - '*.sh' | |
| - 'LICENSE' | |
| branches: | |
| - develop | |
| pull_request: | |
| branches: | |
| - develop | |
| concurrency: | |
| group: web-dashboard-checks-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| NODE_ENV: 'production' | |
| NEXT_TELEMETRY_DISABLED: 1 | |
| jobs: | |
| test-build: | |
| runs-on: ubuntu-latest | |
| container: oven/bun:1-slim | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| run: bun --bun install --frozen-lockfile && bun --bun run build | |
| working-directory: web-dashboard |