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 11e5aba commit 8c55270Copy full SHA for 8c55270
.github/workflows/ci.yml
@@ -28,13 +28,11 @@ jobs:
28
sqlc-version: '1.27.0'
29
- uses: oven-sh/setup-bun@v2
30
- run: wget https://github.com/bytecodealliance/javy/releases/download/v4.0.0/javy-x86_64-linux-v4.0.0.gz
31
- - run: gzip -d javy-x86_64-linux-v4.0.0.gz
32
- - run: chmod +x javy-x86_64-linux-v4.0.0
+ - run: gzip -d javy-x86_64-linux-v4.0.0.gz -c > ./javy
+ - run: chmod +x ./javy
33
- run: bun install
34
- - run: bun build --entrypoints ./src/app.ts --outfile=out.js --minify --target browser
35
- - run: ./javy-x86_64-linux-v4.0.0 build out.js -o plugin.wasm
36
- name: Run tests
37
- run: cd test && bun run test
+ run: bun run test
38
- id: calculate_sha256
39
run: |
40
sha256sum plugin.wasm > plugin.wasm.sha256
0 commit comments