We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09efc05 commit f0849e9Copy full SHA for f0849e9
.github/workflows/ci.yml
@@ -13,15 +13,9 @@ jobs:
13
with:
14
sqlc-version: '1.24.0'
15
- uses: actions/setup-node@v4
16
- - run: wget https://github.com/bytecodealliance/javy/releases/download/v1.2.0/javy-x86_64-linux-v1.2.0.gz
17
- - run: gzip -d javy-x86_64-linux-v1.2.0.gz
18
- - run: chmod +x javy-x86_64-linux-v1.2.0
19
- - run: npm install
20
- - run: npx tsc --noEmit
21
- - run: npx esbuild --bundle src/app.ts --tree-shaking=true --format=esm --target=es2020 --outfile=out.js
22
- - run: ./javy-x86_64-linux-v1.2.0 compile out.js -o examples/plugin.wasm
23
- - run: sqlc -f sqlc.dev.yaml diff
24
- working-directory: examples
+ - name: Build
+ run: |
+ make generate
25
- uses: actions/upload-artifact@v4
26
27
name: plugin
0 commit comments