From a143c718afe569579474a73158cb3cbeb5c1d7df Mon Sep 17 00:00:00 2001 From: lasarasandaru-a11y Date: Wed, 10 Jun 2026 19:57:09 +0530 Subject: [PATCH] Update README.md --- README.md | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) 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 + +