From d652275ef0fe539ce33ab5c05dff6f91106f635e Mon Sep 17 00:00:00 2001 From: "Mark S. Lewis" Date: Wed, 2 Feb 2022 19:50:21 +0000 Subject: [PATCH] Run Go Gateway events sample in CI (#620) Signed-off-by: Mark S. Lewis --- ci/scripts/run-test-network-events.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ci/scripts/run-test-network-events.sh b/ci/scripts/run-test-network-events.sh index e91c3db4..c23d3f2a 100755 --- a/ci/scripts/run-test-network-events.sh +++ b/ci/scripts/run-test-network-events.sh @@ -38,7 +38,7 @@ rm -R ../asset-transfer-events/application-javascript/wallet # Run typescript gateway application createNetwork -print "Initializing typescript application" +print "Initializing TypeScript gateway application" pushd ../asset-transfer-events/application-gateway-typescript npm install print "Build app" @@ -47,3 +47,12 @@ print "Executing dist/app.js" npm start popd stopNetwork + +# Run Go gateway application +createNetwork +print "Initializing Go gateway application" +pushd ../asset-transfer-events/application-gateway-go +print "Executing application" +go run . +popd +stopNetwork