#!/bin/bash # script should fail when any process returns non zero code set -e echo 'prettier:check' (cd client && npm run prettier:check) echo 'lint' (cd client && npm run lint) echo 'python ufmt check' ufmt check server