From fd1efd83b8053fd94606f6f6c41471cbd9a96fa6 Mon Sep 17 00:00:00 2001 From: hirushi12 Date: Mon, 22 Sep 2025 08:19:45 +0530 Subject: [PATCH] Create deploy.xml --- .github/workflows/deploy.xml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/deploy.xml diff --git a/.github/workflows/deploy.xml b/.github/workflows/deploy.xml new file mode 100644 index 00000000..9de4c292 --- /dev/null +++ b/.github/workflows/deploy.xml @@ -0,0 +1,33 @@ +name: Node.js CI + +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