chore: update workflow (#335)

Signed-off-by: Ryan Wang <i@ryanc.cc>
wan92hen-patch-1
Ryan Wang 8 months ago committed by GitHub
parent 6e97f3724b
commit 8cd713b715
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -5,60 +5,63 @@ name: Node.js CI
on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2.0.1
- uses: pnpm/action-setup@v3
with:
version: 6.15.1
version: 8
- name: Use Node.js 16.x
uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: 16.x
cache: 'pnpm'
node-version: "20"
cache: "pnpm"
- run: pnpm install
- run: pnpm lint
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
build:
runs-on: ubuntu-latest
needs: check
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Install pnpm
uses: pnpm/action-setup@v2.0.1
with:
version: 6.15.1
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- run: pnpm install
- run: pnpm build
- run: cd build && zip -r -m build.zip .
- run: pnpm build
- run: cd build && zip -r -m build.zip .
- name: Deploy
uses: easingthemes/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
ARGS: "-avzr --delete"
SOURCE: "build/"
REMOTE_HOST: ${{ secrets.SERVER_HOST }}
REMOTE_PORT: ${{ secrets.SERVER_PORT }}
REMOTE_USER: ${{ secrets.SERVER_USER }}
TARGET: ${{ secrets.SERVER_TARGET }}
SCRIPT_AFTER: ${{ secrets.SCRIPT_AFTER }}
- name: Deploy
uses: easingthemes/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
ARGS: "-avzr --delete"
SOURCE: "build/"
REMOTE_HOST: ${{ secrets.SERVER_HOST }}
REMOTE_PORT: ${{ secrets.SERVER_PORT }}
REMOTE_USER: ${{ secrets.SERVER_USER }}
TARGET: ${{ secrets.SERVER_TARGET }}
SCRIPT_AFTER: ${{ secrets.SCRIPT_AFTER }}

Loading…
Cancel
Save