9 lines
159 B
Bash
9 lines
159 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export NODE_ENV=production;
|
||
|
|
||
|
if [[ -n "$TRAVIS_TAG" ]]; then export REACT_APP_ENV='production'; fi
|
||
|
|
||
|
yarn lint:check
|
||
|
yarn prettier:check
|
||
|
yarn build
|