Feat/login mobile: finish UI and integrate API #31
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 backend dependencies | |
run: cd backend && npm ci | |
deploy: | |
needs: build | |
runs-on: self-hosted | |
steps: | |
- name: Copy backend .env file | |
run: cp ~/env/backend/.env backend/.env | |
- name: Restart api server | |
run: cd backend && pm2 restart api --update-env | |
- name: Notify success deployment | |
run: echo "Deployment complete" |