From e7daf62abc338534b4d206371d6514b54b470fc9 Mon Sep 17 00:00:00 2001 From: Umelo Innocent <147555837+Deanpool15@users.noreply.github.com> Date: Fri, 26 Jul 2024 00:03:10 +0100 Subject: [PATCH] Update deploy.yml --- .github/workflows/deploy.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 139597f9..0a2c18a7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,2 +1,36 @@ +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 -g pm2 && npm i --legacy-peer-deps + + - name: Start application + run: npm run franceking +