From ccd63f58e4c6f13be6a1447443b1326c92d61af9 Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Thu, 7 Dec 2023 11:09:37 -0800 Subject: [PATCH] build(typescript): Test against sqlc-gen-typescript --- .github/workflows/ci-typescript.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci-typescript.yml diff --git a/.github/workflows/ci-typescript.yml b/.github/workflows/ci-typescript.yml new file mode 100644 index 0000000000..2c8b4d3f79 --- /dev/null +++ b/.github/workflows/ci-typescript.yml @@ -0,0 +1,23 @@ +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@v4 + with: + go-version: '1.21.3' + - name: install ./... + run: go install ./... + - uses: actions/checkout@v4 + with: + repository: sqlc-dev/sqlc-gen-typescript + path: typescript + - run: sqlc diff + working-directory: typescript/examples