Files
openmaxio-object-browser/portal-ui/check-warnings.sh

7 lines
117 B
Bash
Raw Normal View History

#!/bin/bash
if yarn build | grep "Compiled with warnings"; then
echo "There are warnings in the code"
exit 1
fi