2020-03-10 18:11:56 +01:00

14 lines
243 B
Bash
Executable File

#!/bin/bash
export NODE_ENV=production;
if [[ -n "$TRAVIS_TAG" ]]; then
export REACT_APP_ENV='production';
elif [[ "$TRAVIS_BRANCH" == "development" ]];
export NODE_ENV=development;
fi
yarn lint:check
yarn prettier:check
yarn build