forked from mirror/NitWikit
27 lines
680 B
YAML
27 lines
680 B
YAML
|
name: Wiki Deploy
|
||
|
|
||
|
on:
|
||
|
[pull_request,push]
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
# 拉取代码
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Use Node.js 20
|
||
|
uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 20
|
||
|
# 启用缓存加速
|
||
|
- name: Cache
|
||
|
uses: actions/cache@v4
|
||
|
with:
|
||
|
path: ~/.npm
|
||
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||
|
# 安装 Npm 并构建
|
||
|
- name: Install and Build
|
||
|
run: npm install && npm run build
|