Skip to content

添加服务端解决方案 #328

添加服务端解决方案

添加服务端解决方案 #328

Workflow file for this run

name: GitHub Pages for PR
on: [pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
- name: 📦 Install Dependencies
run: yarn
- name: 🌌 Build VitePress Docs
run: yarn docs:build