#!/usr/bin/env bash

set -e

echo 'Linting...'
yarn lint

echo 'Running tests...'
yarn test:unit
