mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-01-13 09:00:30 +08:00
92 lines
2.4 KiB
Bash
Executable File
92 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2015-present, Facebook, Inc.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
# ******************************************************************************
|
|
# This is an end-to-end kitchensink test intended to run on CI.
|
|
# You can also run it locally but it's slow.
|
|
# ******************************************************************************
|
|
|
|
# Start in tasks/ even if run from root directory
|
|
cd "$(dirname "$0")"
|
|
|
|
# CLI, app, and test module temporary locations
|
|
# http://unix.stackexchange.com/a/84980
|
|
temp_app_path=`mktemp -d 2>/dev/null || mktemp -d -t 'temp_app_path'`
|
|
|
|
# Load functions for working with local NPM registry (Verdaccio)
|
|
source local-registry.sh
|
|
|
|
function cleanup {
|
|
echo 'Cleaning up.'
|
|
ps -ef | grep 'react-scripts' | grep -v grep | awk '{print $2}' | xargs kill -9
|
|
cd "$root_path"
|
|
# Restore the original NPM and Yarn registry URLs and stop Verdaccio
|
|
stopLocalRegistry
|
|
}
|
|
|
|
# Error messages are redirected to stderr
|
|
function handle_error {
|
|
echo "$(basename $0): ERROR! An error was encountered executing line $1." 1>&2;
|
|
cleanup
|
|
echo 'Exiting with error.' 1>&2;
|
|
exit 1
|
|
}
|
|
|
|
function handle_exit {
|
|
cleanup
|
|
echo 'Exiting without error.' 1>&2;
|
|
exit
|
|
}
|
|
|
|
# Check for the existence of one or more files.
|
|
function exists {
|
|
for f in $*; do
|
|
test -e "$f"
|
|
done
|
|
}
|
|
|
|
# Exit the script with a helpful error message when any error is encountered
|
|
trap 'set +x; handle_error $LINENO $BASH_COMMAND' ERR
|
|
|
|
# Cleanup before exit on any termination signal
|
|
trap 'set +x; handle_exit' SIGQUIT SIGTERM SIGINT SIGKILL SIGHUP
|
|
|
|
# Echo every command being executed
|
|
set -x
|
|
|
|
# Go to root
|
|
cd ..
|
|
root_path=$PWD
|
|
|
|
if hash npm 2>/dev/null
|
|
then
|
|
npm i -g npm@latest
|
|
fi
|
|
|
|
# Bootstrap monorepo
|
|
yarn
|
|
|
|
# ******************************************************************************
|
|
# First, publish the monorepo.
|
|
# ******************************************************************************
|
|
|
|
# Start the local NPM registry
|
|
startLocalRegistry "$root_path"/tasks/verdaccio.yaml
|
|
|
|
# Publish the monorepo
|
|
publishToLocalRegistry
|
|
|
|
# ******************************************************************************
|
|
# Now that we have published them, run all tests as if they were released.
|
|
# ******************************************************************************
|
|
|
|
# Run all tests
|
|
cd test/
|
|
CI=true ../node_modules/.bin/jest -w 2
|
|
|
|
# Cleanup
|
|
cleanup
|