Does particle IDE has support for continuous integration so we can push to flash

I want to maintain my code base using git, so I am looking for a way that if I push my code it should have a pipeline that can show if code got compiled or if it has errors in which case pipeline may fail . and on success it should flash code to my particle photon.

I use this approach of deployment for my web app deployment.

This is how I test Particle libraries using Travis CI. You could easily do the same sort of thing for applications and make the last step after a successful build be to flash the code to a device.

If you want to get really fancy, there was a great session at Spectra on how Opti does this at a product scale. The video is here.

Figured out myself: I just finished implementing gitlab ci for push to flash to my particle photon.

thanks