From 2d1ad124916d9803806c99b1cf2f7659302d00c3 Mon Sep 17 00:00:00 2001 From: Demian Parkhomenko <95881717+DemianParkhomenko@users.noreply.github.com> Date: Mon, 11 Sep 2023 18:53:12 +0300 Subject: [PATCH] CI/CD example --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 27ff8d0..573b1f7 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ const PORT = 8000 http .createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }) - res.end('Hello World!!!!!!!!!') + res.end('Example') }) .listen(PORT)