Skip to content

添加warning和缩小图片 #12

添加warning和缩小图片

添加warning和缩小图片 #12

name: build-docusaurus
on:
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
publish:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repo
uses: actions/checkout@v2
# Node is required for npm
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "18"
# Install and build Docusaurus website
- name: Build Docusaurus website
run: |
npm install
npm run build