#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

set -e

echo "Running tests and style checks before push"
npm run lint:check
npm run test:full
