Skip to content

Commit

Permalink
build(typescript): Test against sqlc-gen-typescript (#3046)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleconroy committed Dec 7, 2023
1 parent 4f3940e commit 8e19d89
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci-typescript.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 8e19d89

Please sign in to comment.