Skip to content

remove most instances of parseInt #308

remove most instances of parseInt

remove most instances of parseInt #308

Workflow file for this run

name: Deploy API
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Executing remote command
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
USERNAME: ${{ secrets.USERNAME }}
PORT: ${{ secrets.PORT }}
KEY: ${{ secrets.SSH }}
script: |
cd /var/www/html/api.faithfulpack.net/
git stash
git pull
npm install --save
npm run build
pm2 restart "API"