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

[examples] Ensure examples run during CI #633

Merged
merged 3 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion examples/typescript/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
move/moonCoin/moonCoin.json
move/moonCoin/test-package.json
move/facoin/facoin.json
move/account_abstraction/*.json
move/account_abstraction/*.json
move/claims/claims.json
14 changes: 7 additions & 7 deletions examples/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@
"main": "simple_transfer.ts",
"scripts": {
"build": "tsc",
"multi_agent_transfer": "ts-node multi_agent_transfer.ts",
"simple_transfer": "ts-node simple_transfer.ts",
"multi_agent_transfer": "ts-node multi_agent_transfer.ts",
"simple_sponsored_transaction": "ts-node simple_sponsored_transaction.ts",
"transfer_coin": "ts-node transfer_coin.ts",
"custom_client": "ts-node custom_client.ts",
"swap": "ts-node swap.ts",
"sign_struct": "ts-node sign_struct.ts",
"publish_package_from_filepath": "ts-node publish_package_from_filepath.ts",
"external_signing": "ts-node external_signing.ts",
"sign_struct": "ts-node sign_struct.ts",
"your_coin": "ts-node your_coin.ts",
"your_fungible_asset": "ts-node your_fungible_asset.ts",
"public_key_authenticator_account_abstraction": "ts-node public_key_authenticator_account_abstraction.ts",
"hello_world_authenticator_account_abstraction": "ts-node hello_world_authenticator_account_abstraction.ts",
"view_bcs": "ts-node view_bcs.ts",
"federated_keyless": "ts-node federated_keyless.ts",
"jwk_update": "ts-node jwk_update.ts",
"keyless": "ts-node keyless.ts",
"keyless_mainnet": "ts-node keyless_mainnet.ts",
"local_node": "ts-node local_node.ts",
"public_key_authenticator_account_abstraction": "ts-node public_key_authenticator_account_abstraction.ts",
"hello_world_authenticator_account_abstraction": "ts-node hello_world_authenticator_account_abstraction.ts",
"view_bcs": "ts-node view_bcs.ts",
"test": "run-s simple_transfer multi_agent_transfer simple_sponsored_transaction transfer_coin custom_client publish_package_from_filepath external_signing sign_struct publish_package_from_filepath external_signing your_coin your_fungible_asset view_bcs"
"swap": "ts-node swap.ts",
"test": "run-s simple_transfer multi_agent_transfer simple_sponsored_transaction transfer_coin custom_client publish_package_from_filepath external_signing sign_struct your_coin your_fungible_asset public_key_authenticator_account_abstraction hello_world_authenticator_account_abstraction view_bcs"
},
"keywords": [],
"author": "",
Expand Down
Loading