From de5421b5bdf1306a2fd6369293954f1c56e26295 Mon Sep 17 00:00:00 2001 From: Djoubensky Date: Thu, 31 Oct 2024 08:19:17 -0500 Subject: [PATCH] Create deploy.yml --- .github/workflows/deploy.yml | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 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 00000000..27ad4406 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,38 @@ +name: Node.js I + +on: + push: + branches: + - main + pull_request: + branches: + - main + schedule: + - cron: '0 */4 * * *' + +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 install + + - name: Start application with timeout + run: | + timeout 75635s npm run zokou