Skip to content

Commit

Permalink
[examples] Ensure examples run during CI (#633)
Browse files Browse the repository at this point in the history
All examples that can't run during CI (keyless, swap, localnode) without
manual intervention are ignored, but the AA ones are added.  Order is
reordered to match the full test order.
  • Loading branch information
gregnazario authored Feb 11, 2025
1 parent 0eed028 commit 9c30ae8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
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

0 comments on commit 9c30ae8

Please sign in to comment.