From 49a413e665d207596db5d90aadb1c7cc70691e4a Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Thu, 27 Sep 2018 15:45:28 +0200 Subject: [PATCH] Build and test memo on CI --- script/build | 1 + script/test | 2 ++ 2 files changed, 3 insertions(+) diff --git a/script/build b/script/build index ebda6ad8..92dc8b6a 100755 --- a/script/build +++ b/script/build @@ -7,3 +7,4 @@ cd xray_ui; yarn install; cd - cd xray_cli; cargo build "$@"; cd - cd xray_server; cargo build "$@"; cd - cd xray_browser; script/build; cd - +cd memo_js; yarn install && script/build; cd - diff --git a/script/test b/script/test index 679c9e5f..16785530 100755 --- a/script/test +++ b/script/test @@ -5,3 +5,5 @@ set -e cd xray_core; cargo test; cd - cd xray_wasm; script/test; cd - cd xray_ui; yarn test; cd - +cd memo_core; cargo test; cd - +cd memo_js; yarn test; cd -