Skip to main content

Posts

Showing posts with the label Heroku

Tutorial: Set up a continuous testing pipeline with Node.js

Continuous integration  is large part of modern development workflows. Most of us are familiar with basic CI services that automatically build code as new changes are pushed. But what if you took that a step further and not only built your code, but also  deployed  and  tested  it within the same pipeline? This is  continuous development . Let’s outline the steps of the pipeline: Continuous integration : Push new code to GitHub, which is then built by CircleCI. Continuous deployment : Automatically deploy the new application to Heroku. Continuous testing : Execute post-deployment tests with Assertible. I’ve created an example Node.js app for the To Read more click here Reference:- This article was published on BestDevOps.com