I'm using TeamCity for building my node project. My build configuration is triggered by a git commit, has several steps, and one of them is npm install
.
What I want is for TeamCity to recognize if latest commit didn't make any changes to package.json
file and in that case fire up a different build configuration - without npm install
command.
Is this somehow possible?