mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 04:23:13 +00:00
5e046a963b
`npm run build` is now mandatory.
15 lines
243 B
Bash
Executable file
15 lines
243 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "No pull request ID was specified."
|
|
exit 1
|
|
fi
|
|
|
|
git fetch https://github.com/thelounge/lounge.git refs/pull/${1}/head
|
|
git checkout FETCH_HEAD
|
|
npm install
|
|
npm run build
|
|
npm test || true
|
|
npm start
|