mirror of
https://github.com/halo-dev/docs.git
synced 2026-01-13 06:03:55 +08:00
75
.github/workflows/node.js.yml
vendored
75
.github/workflows/node.js.yml
vendored
@@ -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
|
||||
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@v2.0.1
|
||||
with:
|
||||
version: 6.15.1
|
||||
- uses: pnpm/action-setup@v3
|
||||
with:
|
||||
version: 8
|
||||
|
||||
- name: Use Node.js 16.x
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 16.x
|
||||
cache: 'pnpm'
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "20"
|
||||
cache: "pnpm"
|
||||
|
||||
- run: pnpm install
|
||||
- run: pnpm build
|
||||
- run: cd build && zip -r -m build.zip .
|
||||
- name: Install dependencies
|
||||
run: pnpm install
|
||||
|
||||
- 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 }}
|
||||
- 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 }}
|
||||
|
||||
Reference in New Issue
Block a user