Skip to content

fix: issue with recursive custom column type ending with '[]' #279

fix: issue with recursive custom column type ending with '[]'

fix: issue with recursive custom column type ending with '[]' #279

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
pull_request:
branches: [master, main, /^\d+\.\d+\.\d+$/]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: ["18", "20"]
fail-fast: false
services:
postgres:
image: postgres:14
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- run: pnpm install
- run: pnpm run setup
env:
PGUSER: postgres
PGPASSWORD: postgres
PGHOST: localhost
PGDATABASE: postgres
- run: pnpm build
- run: pnpm typecheck
- run: pnpm lint
- run: pnpm format
- run: pnpm test