2020-02-27 15:37:43 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
export NODE_ENV=production;
|
|
|
|
|
|
|
|
if [[ -n "$TRAVIS_TAG" ]]; then export REACT_APP_ENV='production'; fi
|
|
|
|
|
|
|
|
yarn lint:check
|
|
|
|
yarn prettier:check
|
2020-07-01 22:20:06 +00:00
|
|
|
yarn test:coverage
|
2020-02-27 15:37:43 +00:00
|
|
|
yarn build
|