#!/usr/bin/env bash

rm -f ~/.npmrc && rm -f ~/.yarnrc

# Execute running tests from same directory as current script
cd "$(dirname "$0")"

# Install dependencies
npm install
npm run lint && \
npm run build && \
npm run test