40 lines
581 B
Bash
40 lines
581 B
Bash
#!/bin/bash
|
|
|
|
usage() {
|
|
/etc/init.d/postgresql stop
|
|
echo "Usage: $0 [nodejs10|nodejs6]"
|
|
exit 1
|
|
}
|
|
|
|
echo "$0 $1"
|
|
|
|
# start PostgreSQL
|
|
/etc/init.d/postgresql start
|
|
|
|
echo "Node.js version:"
|
|
node -v
|
|
|
|
# install dependencies
|
|
NODEJS_VERSION=${1-nodejs10}
|
|
|
|
if [ "$NODEJS_VERSION" = "nodejs10" ];
|
|
then
|
|
echo "npm version on install:"
|
|
npm -v
|
|
npm install
|
|
elif [ "$NODEJS_VERSION" = "nodejs6" ];
|
|
then
|
|
npm install -g yarn@0.27.5
|
|
echo "yarn version on install:"
|
|
yarn --version
|
|
yarn
|
|
else
|
|
usage
|
|
fi
|
|
|
|
# run tests
|
|
echo "npm version on tests:"
|
|
npm -v
|
|
|
|
npm test
|