From 049a4b38a27983d6df42967a5f9ce81bdd8bfa4f Mon Sep 17 00:00:00 2001 From: Gayanaroshana1 Date: Wed, 27 Nov 2024 12:05:29 +0530 Subject: [PATCH] Create node.js --- node.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 node.js diff --git a/node.js b/node.js new file mode 100644 index 0000000..9de4c29 --- /dev/null +++ b/node.js @@ -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