Setup CI/CD
Before to start to code we have to setup our CI / CD envs that are responsible of run unit tests / integration tests and deployments
Usually we add some tasks for the CI task runner that will be used to build the app for the correct env eg:
"heroku-postbuild": "npm run build:base -- -e=${ENV} --target=${TARGET} && npm run post-build"