Skip to content

Remove words that are longer than 8 characters #4

Remove words that are longer than 8 characters

Remove words that are longer than 8 characters #4

Workflow file for this run

name: main
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Setup node env 🏗
uses: actions/setup-node@v4
with:
node-version: 20.x
check-latest: true
- name: Install dependencies 👨🏻‍💻
run: npm ci
- name: Build app ⚒️
run: npm run build
- name: Copy app to server 📄
uses: appleboy/scp-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: ${{ secrets.SSH_PORT }}
source: "build"
target: ${{ secrets.SSH_TARGET }}
rm: true