fix: cte and subquery relation name and columns should be registered on query catalog #720
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: typescript | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21.3' | |
- name: install ./... | |
run: go install ./... | |
- uses: actions/checkout@v4 | |
with: | |
repository: sqlc-dev/sqlc-gen-typescript | |
path: typescript | |
# v0.1.3 | |
ref: daaf539092421adc15f6c3164279a3470716b560 | |
- run: sqlc diff | |
working-directory: typescript/examples |