添加了使用使用vercel搭建网站服务 #972
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
[pull_request,push] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
# 拉取代码 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "setup pnpm" | |
uses: "pnpm/action-setup@v4" | |
- name: "setup node" | |
uses: "actions/setup-node@v4" | |
with: | |
node-version: 20 | |
- name: "Install" | |
run: "pnpm install" | |
- name: "MarkdownLint Check" | |
uses: DavidAnson/markdownlint-cli2-action@v17 | |
with: | |
fix: true | |
globs: 'docs*/**/*.md' | |
- name: "Build" | |
run: "pnpm run build" |