Skip to content

Commit

Permalink
implement reconnect client. (#116)
Browse files Browse the repository at this point in the history
Co-authored-by: David Salami <[email protected]>
Co-authored-by: Seun Lanlege <[email protected]>
  • Loading branch information
3 people authored Mar 9, 2024
1 parent e4db05c commit 4d663a1
Show file tree
Hide file tree
Showing 19 changed files with 978 additions and 525 deletions.
27 changes: 26 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,15 @@ concurrency:

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-C link-args=-Wl,--allow-multiple-definition"
# RUSTFLAGS: "-C link-args=-Wl,--allow-multiple-definition"
FOUNDRY_PROFILE: ci
BNB_RPC: ${{ secrets.BNB_RPC }}
BSC_URL: ${{ secrets.BSC_URL }}
OP_URL: ${{ secrets.OP_URL }}
SEPOLIA_URL: ${{ secrets.SEPOLIA_URL }}
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
POLYGON_RPC: ${{ secrets.POLYGON_RPC }}
WASM_BINDGEN_TEST_TIMEOUT: 3600

jobs:
check-wasm:
Expand Down Expand Up @@ -260,3 +265,23 @@ jobs:
forge test -vvv
id: test

hyperclient-tests:
name: Hyperclient Integration Tests
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]

- name: Install wasm-pack
run: |
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
rustup target add wasm32-unknown-unknown
- name: Install chrome
uses: browser-actions/setup-chrome@latest

- name: Run WASM tests
run: |
wasm-pack test --headless --chrome --no-default-features --features=wasm
working-directory: modules/client

Loading

0 comments on commit 4d663a1

Please sign in to comment.