diff --git a/README.md b/README.md
index eb53aaffecd..11f044beb09 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,36 @@
-
+name: Node.js CI/CD Workflow
+
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+ branches:
+ - main
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ node-version: [20.x]
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+
+ - name: Set up Node.js
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+
+ - name: Install dependencies
+ run: npm install
+
+ - name: Start application
+ run: npm start
+
+