Skip to content

Bump the npm_and_yarn group across 1 directory with 17 updates #23

Bump the npm_and_yarn group across 1 directory with 17 updates

Bump the npm_and_yarn group across 1 directory with 17 updates #23

Workflow file for this run

name: Node CI deploy
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Install npm dependencies
run: npm install
- name: Run build task
run: npm run build
- name: Deploy to Server
uses: appleboy/scp-action@master
with:
host: ${{ secrets.REMOTE_HOST }}
port: 22
username: ${{ secrets.REMOTE_USER }}
password: ${{ secrets.REMOTE_PASSWORD }}
source: '*'
target: ${{ secrets.REMOTE_TARGET }}