From 14e93a48708583f3d4ad9f9c61e8ecaf9249ac07 Mon Sep 17 00:00:00 2001
From: suyashgaonkar <suyashgaonkar@github.com>
Date: Wed, 26 Jun 2024 15:14:10 +0530
Subject: [PATCH] first commit on using setup node

---
 .github/workflows/helloWorld.yml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 .github/workflows/helloWorld.yml

diff --git a/.github/workflows/helloWorld.yml b/.github/workflows/helloWorld.yml
new file mode 100644
index 00000000..9fa595e7
--- /dev/null
+++ b/.github/workflows/helloWorld.yml
@@ -0,0 +1,18 @@
+name: Hello world work flow
+
+on:
+  push:
+    branches:
+      -suyash-test-1
+  pull_request:
+    branches:
+      -suyash-test-1
+  workflow_dispatch:
+jobs:
+  hello:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v4
+      - name: hello world
+        run: echo "Hello world"
+        shell: bash