Skip to content

Added Vercel Config To The Backend #84

Added Vercel Config To The Backend

Added Vercel Config To The Backend #84

Workflow file for this run

name: Backend | Run (ts-node)
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: 20
- name: Install dependencies
working-directory: ./backend
run: npm install
- name: Run the project
working-directory: ./backend
env:
PORT: 3000
MONGO_URI: ${{ secrets.MONGO_URI }}
run: |
nohup npm run start &
sleep 3