mirror of
https://github.com/halo-dev/docs.git
synced 2026-05-11 01:00:58 +08:00
@@ -5,60 +5,63 @@ name: Node.js CI
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ main ]
|
branches: [main]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main ]
|
branches: [main]
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install pnpm
|
- uses: pnpm/action-setup@v3
|
||||||
uses: pnpm/action-setup@v2.0.1
|
|
||||||
with:
|
with:
|
||||||
version: 6.15.1
|
version: 8
|
||||||
|
|
||||||
- name: Use Node.js 16.x
|
- uses: actions/setup-node@v4
|
||||||
uses: actions/setup-node@v2
|
|
||||||
with:
|
with:
|
||||||
node-version: 16.x
|
node-version: "20"
|
||||||
cache: 'pnpm'
|
cache: "pnpm"
|
||||||
|
|
||||||
- run: pnpm install
|
- name: Install dependencies
|
||||||
- run: pnpm lint
|
run: pnpm install
|
||||||
|
|
||||||
|
- name: Lint
|
||||||
|
run: pnpm lint
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: check
|
needs: check
|
||||||
if: github.event_name == 'push'
|
if: github.event_name == 'push'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install pnpm
|
- uses: pnpm/action-setup@v3
|
||||||
uses: pnpm/action-setup@v2.0.1
|
with:
|
||||||
with:
|
version: 8
|
||||||
version: 6.15.1
|
|
||||||
|
|
||||||
- name: Use Node.js 16.x
|
- uses: actions/setup-node@v4
|
||||||
uses: actions/setup-node@v2
|
with:
|
||||||
with:
|
node-version: "20"
|
||||||
node-version: 16.x
|
cache: "pnpm"
|
||||||
cache: 'pnpm'
|
|
||||||
|
|
||||||
- run: pnpm install
|
- name: Install dependencies
|
||||||
- run: pnpm build
|
run: pnpm install
|
||||||
- run: cd build && zip -r -m build.zip .
|
|
||||||
|
|
||||||
- name: Deploy
|
- run: pnpm build
|
||||||
uses: easingthemes/ssh-deploy@main
|
- run: cd build && zip -r -m build.zip .
|
||||||
env:
|
|
||||||
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
|
- name: Deploy
|
||||||
ARGS: "-avzr --delete"
|
uses: easingthemes/ssh-deploy@main
|
||||||
SOURCE: "build/"
|
env:
|
||||||
REMOTE_HOST: ${{ secrets.SERVER_HOST }}
|
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
|
||||||
REMOTE_PORT: ${{ secrets.SERVER_PORT }}
|
ARGS: "-avzr --delete"
|
||||||
REMOTE_USER: ${{ secrets.SERVER_USER }}
|
SOURCE: "build/"
|
||||||
TARGET: ${{ secrets.SERVER_TARGET }}
|
REMOTE_HOST: ${{ secrets.SERVER_HOST }}
|
||||||
SCRIPT_AFTER: ${{ secrets.SCRIPT_AFTER }}
|
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