Skip to content

chore: create FUNDING.yml #181

chore: create FUNDING.yml

chore: create FUNDING.yml #181

Workflow file for this run

name: Testing and deploy
on:
push:
branches:
- main
jobs:
cypress:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup npm package
run: npm install
- name: Testing
uses: cypress-io/github-action@v6
with:
start: npm run dev
deploy:
runs-on: ubuntu-latest
needs: cypress
steps:
- uses: actions/checkout@v4
- name: Copy repository contents via scp
uses: appleboy/scp-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
port: ${{ secrets.PORT }}
key: ${{ secrets.KEY }}
source: '.'
target: ${{ secrets.TARGET }}