This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/scripts/run-pr.sh
2020-11-01 22:46:04 +00:00

18 lines
295 B
Bash

#!/bin/sh
set -e
if [ -z "$1" ]; then
echo "No pull request ID was specified."
exit 1
fi
git fetch https://github.com/thelounge/thelounge.git refs/pull/${1}/head
git checkout FETCH_HEAD
git rebase master
yarn install
NODE_ENV=production yarn build
yarn test || true
shift
yarn start "$@"