Skip to content

feat: 添加图片资源并完成实习信息展示组件 #13

feat: 添加图片资源并完成实习信息展示组件

feat: 添加图片资源并完成实习信息展示组件 #13

name: Lint Pr Title
on: [pull_request]
jobs:
lint-code-spell:
name: Code Spell Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false
- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Code Spell Check
uses: streetsidesoftware/cspell-action@v6
with:
files: "**"
config: .cspell.json
strict: true
verbose: true