Skip to content

Commit 73b21d6

Browse files
committed
Build WASM during CI
1 parent 15e4340 commit 73b21d6

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
- uses: actions/setup-go@v5
1818
with:
1919
go-version: stable
20+
- name: build-wasm
21+
run: |
22+
./script/build-wasm
2023
- name: test
2124
run: |
2225
./script/test

script/install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
set -e
44

5-
./script/test && ./script/lint && go install ./cmd/ari && echo "INSTALLED"
5+
./script/test && ./script/lint && ./script/build-wasm && go install ./cmd/ari && echo "INSTALLED"

0 commit comments

Comments
 (0)