Skip to content

Commit 9ea1adb

Browse files
committed
Split proxe to separate service
1 parent fc4c441 commit 9ea1adb

51 files changed

Lines changed: 8547 additions & 1452 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/test.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,27 @@ jobs:
7373
- name: wasm-sdk wasm32 check
7474
run: cargo check --manifest-path bindings/wasm-sdk/Cargo.toml --target wasm32-unknown-unknown
7575

76+
wasm-sdk-browser:
77+
runs-on: ubuntu-latest
78+
timeout-minutes: 45
79+
steps:
80+
- uses: actions/checkout@v4
81+
with:
82+
submodules: true
83+
- uses: actions-rust-lang/setup-rust-toolchain@v1
84+
with:
85+
rustflags: ""
86+
- name: Add wasm32 target
87+
run: rustup target add wasm32-unknown-unknown
88+
- name: Install wasm-pack
89+
run: cargo install wasm-pack --locked
90+
- name: Install Firefox
91+
run: sudo apt-get update && sudo apt-get install -y firefox
92+
- name: wasm-sdk browser tests
93+
run: |
94+
cd bindings/wasm-sdk
95+
wasm-pack test --headless --firefox
96+
7697
lib-sdk-tests:
7798
runs-on: warp-ubuntu-latest-x64-16x
7899
timeout-minutes: 90

0 commit comments

Comments
 (0)