[SHR-29] enhance: add field organization rating to get campaign detai… #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy | |
on: | |
push: | |
paths: | |
- '**.js' | |
branches: | |
- develop | |
pull_request: | |
types: [opened, synchronize] | |
branches: | |
- develop | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
- name: Install dependencies | |
run: cd backend && npm ci | |
deploy: | |
needs: build | |
runs-on: self-hosted | |
steps: | |
- name: Copy .env file | |
run: cp ~/env/.env backend/.env | |
- name: run migrations | |
run: cd backend && npm run knex migrate:latest | |
- name: Restart api server | |
run: cd backend && pm2 restart api --update-env | |
- name: Notify success deployment | |
run: echo "Deployment complete" |