-
Book Overview & Buying
-
Table Of Contents
React Application Architecture for Production - Second Edition
By :
Our application is finally ready to meet its first users. We've built all the features, set up linting, written unit and integration tests, and added end-to-end tests. All of that gives us confidence that the code works. But right now, every one of those checks has to be run manually on our local machine. Every time we want to make a change to the application, we need to run all the scripts ourselves and then trigger the deployment manually. That's slow, error-prone, and honestly pretty tedious.
What we really want is for all of this to happen automatically. Every time we push code changes, a pipeline should run the checks, and if everything passes, deploy the new version without manual steps. That's exactly what CI/CD gives us.
We'll cover the following topics:
By the end of this chapter, we'll have...