add test-cicd code

This commit is contained in:
2026-04-17 09:15:51 +07:00
parent 11bb25d772
commit 26ac517674
5 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{
"name": "sample-nodejs-app",
"version": "1.0.0",
"description": "A sample Node.js app for CI/CD demonstration",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest"
},
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"jest": "^29.5.0",
"supertest": "^6.3.3"
}
}