2020-02-27 16:37:43 +01: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 19:20:06 -03:00
|
|
|
yarn test:coverage
|
2020-02-27 16:37:43 +01:00
|
|
|
yarn build
|