Skip to content

Commit 8e19d89

Browse files
authored
build(typescript): Test against sqlc-gen-typescript (#3046)
1 parent 4f3940e commit 8e19d89

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci-typescript.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: typescript
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
jobs:
8+
build:
9+
name: test
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-go@v4
14+
with:
15+
go-version: '1.21.3'
16+
- name: install ./...
17+
run: go install ./...
18+
- uses: actions/checkout@v4
19+
with:
20+
repository: sqlc-dev/sqlc-gen-typescript
21+
path: typescript
22+
- run: sqlc diff
23+
working-directory: typescript/examples

0 commit comments

Comments
 (0)