From bf5a2252af4589fc91a8c567fcbb216b0100e353 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Tue, 20 Jun 2017 12:06:35 +0100 Subject: [PATCH] Install the Yarn deps before trying to bundle. --- ci/run_feature_tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/run_feature_tests.sh b/ci/run_feature_tests.sh index 8fb11313d..993b425a1 100755 --- a/ci/run_feature_tests.sh +++ b/ci/run_feature_tests.sh @@ -27,6 +27,7 @@ $WORKSPACE/pgadmin-venv/bin/pip install -r requirements.txt || { echo 'ERROR: Fa $WORKSPACE/pgadmin-venv/bin/pip install -r web/regression/requirements.txt || { echo 'ERROR: Failed to install the regression test requirements.' ; exit 1; } cd web +/usr/bin/yarn install || { echo 'ERROR: Failed to install the required Javascript modules.' ; exit 1; } /usr/bin/yarn run bundle || { echo 'ERROR: Failed to bundle the Javascript code.' ; exit 1; } cd ../