We've configured our Jenkins job, now let's test it. I'm going to modify a simple file to be sure the Jenkins works properly.
Let's modify our Home component; I'll add an extra text (Jenkins):
import React from 'react'; import styles from './Home.scss'; const Home = props => ( <h1 className={styles.Home}>Hello {props.name || 'World'} (Jenkins)</h1> ); export default Home;
After that, you need to commit and push to master. Now go to Jenkins, select your job, and click on Build Now ...