From 3d1e4c394b1bd2023fcf1b01e13b1ee196f11994 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Sat, 15 Aug 2020 14:02:26 -0400 Subject: [PATCH] chore: remove redundant make bootstrap --- scripts/integration-tests/e2e-babel-old-version.sh | 7 ++----- scripts/integration-tests/e2e-babel.sh | 5 ++--- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/scripts/integration-tests/e2e-babel-old-version.sh b/scripts/integration-tests/e2e-babel-old-version.sh index d69cb4eb2396..4386ec9fb2a5 100755 --- a/scripts/integration-tests/e2e-babel-old-version.sh +++ b/scripts/integration-tests/e2e-babel-old-version.sh @@ -43,10 +43,7 @@ node "$PWD"/scripts/integration-tests/utils/bump-babel-dependencies.js fs.writeFileSync('./package.json', JSON.stringify(pkg, null, 2)); " -rm yarn.lock -make bootstrap - -# Test -make test-ci +# Update deps, build and test +make -j test-ci cleanup diff --git a/scripts/integration-tests/e2e-babel.sh b/scripts/integration-tests/e2e-babel.sh index 9af3c127eb1d..3ffd49b8d6d7 100755 --- a/scripts/integration-tests/e2e-babel.sh +++ b/scripts/integration-tests/e2e-babel.sh @@ -26,8 +26,7 @@ startLocalRegistry "$PWD"/scripts/integration-tests/verdaccio-config.yml # and not from npm. node "$PWD"/scripts/integration-tests/utils/bump-babel-dependencies.js -# Test -yarn install --inline-builds -make test-ci +# Update deps, build and test +make -j test-ci cleanup