From de01a153ea13cd1cf05e974420f69fc0a4c6cf40 Mon Sep 17 00:00:00 2001 From: Luffy-xp Date: Sat, 23 Nov 2024 14:32:47 -0500 Subject: [PATCH] Create deploy.yml --- github/workflows/deploy.yml | 49 +++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 github/workflows/deploy.yml diff --git a/github/workflows/deploy.yml b/github/workflows/deploy.yml new file mode 100644 index 0000000..7f491d2 --- /dev/null +++ b/github/workflows/deploy.yml @@ -0,0 +1,49 @@ +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