A React Application on Github Pages with Travis CI

Chad Mowbray
6 min readNov 1, 2020

Host a React app on Github pages using Travis CI for continuous integration

Continuous Integration and Continuous Delivery (CI/CD) are quickly becoming industry standards in software development. Today we are going to focus on the first term: Continuous Integration. Continuous Integration basically means setting up “pipelines” to thoroughly test a codebase every time a change is made.

  1. You as a developer make some small change to the codebase and submit a PR.
  2. Some system (we will be using…

--

--