feat:add github action

pr675
黄云飞 4 years ago
parent 7db8489648
commit 33a9c8e9ab

@ -0,0 +1,41 @@
name: build
on:
push:
branches: [main]
paths:
- 'src/**'
- 'index.html'
- 'package.json'
- 'vite.config.ts'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i yarn -g
- run: yarn
- run: yarn run build
- run: mv dist canvas-editor
- name: Copy folder content recursively to remote
uses: garygrossgarten/github-action-scp@release
with:
local: canvas-editor
remote: ${{ secrets.PATH }}
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
rmRemote: true
- name: Executing remote ssh commands
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: sed -i 's/<\/body>/${{ secrets.SCRIPT }}<\/body>/g' ${{ secrets.PATH }}/index.html

@ -0,0 +1,30 @@
name: cypress
on:
push:
branches: [main]
paths:
- '.github/workflows/*'
- 'cypress/**'
- 'src/**'
- 'index.html'
- 'package.json'
- 'vite.config.ts'
jobs:
cypress:
runs-on: ubuntu-latest
container: cypress/browsers:node16.14.0-slim-chrome99-ff97
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i yarn serve -g
- run: yarn
- run: yarn run build
- run: mv dist canvas-editor
- run: serve . -l 3000 &
- run: yarn run cypress:run
Loading…
Cancel
Save