Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: its example #114

Closed
wants to merge 24 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: add more setup to initialize step
npty committed Sep 6, 2024
commit fdddf6390fd7e21bf3470ca03bde9f809b6e5811
5 changes: 4 additions & 1 deletion .github/workflows/test-js.yaml
Original file line number Diff line number Diff line change
@@ -25,7 +25,10 @@ jobs:
run: npm run build

- name: Initialize Sui Config
run: echo -e "y\n\n1" | sui client envs
run: |
echo -e "y\n\n1" | sui client envs
sui client new-address secp256k1 wallet
sui client switch --address wallet

- name: Run Localnet
run: nohup sh -c "RUST_LOG="off,sui_node=info" sui start --with-faucet --force-regenesis" > nohup.out 2> nohup.err < /dev/null &