From 997518558d22d1df6e310b557389610108744a2f Mon Sep 17 00:00:00 2001 From: sapthasurendran Date: Wed, 18 May 2022 17:40:14 +0530 Subject: [PATCH] updated azure pipeline to include the app Signed-off-by: sapthasurendran --- ci/scripts/run-test-network-secured.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ci/scripts/run-test-network-secured.sh b/ci/scripts/run-test-network-secured.sh index cce1721a..6450ee98 100755 --- a/ci/scripts/run-test-network-secured.sh +++ b/ci/scripts/run-test-network-secured.sh @@ -34,3 +34,15 @@ popd stopNetwork print "Remove wallet storage" rm -R ../asset-transfer-secured-agreement/application-javascript/wallet + +# Run Typescript Gateway application +createNetwork +print "Initializing typescript application" +pushd ../asset-transfer-secured-agreement/application-gateway-typescript +npm install +print "Build app" +npm run build +print "Executing dist/app.js" +npm start +popd +stopNetwork