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 15e4340 commit 73b21d6Copy full SHA for 73b21d6
.github/workflows/build.yml
@@ -17,6 +17,9 @@ jobs:
17
- uses: actions/setup-go@v5
18
with:
19
go-version: stable
20
+ - name: build-wasm
21
+ run: |
22
+ ./script/build-wasm
23
- name: test
24
run: |
25
./script/test
script/install
@@ -2,4 +2,4 @@
2
3
set -e
4
5
-./script/test && ./script/lint && go install ./cmd/ari && echo "INSTALLED"
+./script/test && ./script/lint && ./script/build-wasm && go install ./cmd/ari && echo "INSTALLED"
0 commit comments