Skip to content

Add blog

Add blog #37

Workflow file for this run

name: Build Check
on:
pull_request:
types:
- opened
- synchronize
# 任务
jobs:
build-webgal-homepage :
# 服务器环境:最新版 Ubuntu
runs-on: ubuntu-latest
steps:
# 拉取代码
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
# 安装依赖
- name: Install
run: npm install
# 生成静态文件
- name: Build
run: npm run build