Skip to content

Commit bd1a30c

Browse files
committed
update github action
1 parent 3b512e5 commit bd1a30c

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/workflows/ci.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@ jobs:
3636
node-version: '15'
3737

3838
- name: Build wasm
39-
run: wasm-pack build --target web
39+
run: |
40+
cd rust-pack
41+
cargo run
42+
cd ../ra-wasm
43+
wasm-pack build --target web
4044
4145
- name: Install www
4246
uses: borales/[email protected]

.github/workflows/netlify.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ jobs:
3535
node-version: '15'
3636

3737
- name: Build wasm
38-
run: wasm-pack build --target web
38+
run: |
39+
cd rust-pack
40+
cargo run
41+
cd ../ra-wasm
42+
wasm-pack build --target web
3943
4044
- name: Install www
4145
uses: borales/[email protected]

www/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
22
dist
3+
fake_*.rs

0 commit comments

Comments
 (0)