Sunday, April 23, 2017

Continuous Integration

Continuous Integration is a development practice in which  the developers are required to commit changes to source code in a shared repository several times a day or more frequently.

Every commit made in the repository is then built. This allows the teams to detect problems early.


No comments:

Post a Comment

Call a function in child component from parent component in React

Consider the following parent component class Parent extends React.Component { constructor(props) { super(props);         thi...