From c18ed9c1c837e25545d23150112aabd7dc5ced42 Mon Sep 17 00:00:00 2001 From: Antonio Barcelos Date: Mon, 12 Apr 2021 15:59:29 +0200 Subject: [PATCH] Fix run test scripts --- runTests.ps1 | 7 +++++++ runTests.sh | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/runTests.ps1 b/runTests.ps1 index 56cbfc429..2b39f5cfb 100644 --- a/runTests.ps1 +++ b/runTests.ps1 @@ -1,3 +1,10 @@ +npm --prefix core ci +npm --prefix core test +npm --prefix core run build +npm --prefix bolt-connection ci +npm --prefix bolt-connection test +npm --prefix bolt-connection run build + npm ci $ErrorFound = $False diff --git a/runTests.sh b/runTests.sh index e4be22d66..fd19f43c1 100755 --- a/runTests.sh +++ b/runTests.sh @@ -5,6 +5,12 @@ function finish { } trap finish EXIT +npm --prefix ./core/ ci +npm --prefix ./core/ test +npm --prefix ./core/ run build +npm --prefix ./bolt-connection/ ci +npm --prefix ./bolt-connection/ test +npm --prefix ./bolt-connection/ run build npm ci