We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f3940e commit 8e19d89Copy full SHA for 8e19d89
.github/workflows/ci-typescript.yml
@@ -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
19
20
+ repository: sqlc-dev/sqlc-gen-typescript
21
+ path: typescript
22
+ - run: sqlc diff
23
+ working-directory: typescript/examples
0 commit comments