
Setup basic CI/CD with Github Action and Node.js / DevOps Fundamentals
Set up the app npm init -y Install Express, Mocha, and Chai (for the tests). Here, we install chai@4.3.10 as it handles CommonJS imports, while version 5 does not. npm install express npm install mocha chai@4.3.10 supertest --save-dev Create th...