添加了审核状态及可选的修改意见的api,在routers里面增加了reviewNotes方法,并在数据表里增加了reviewNotes字段 #52
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: Type Check | |
on: [workflow_dispatch, push] | |
jobs: | |
typecheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
with: | |
version: 9 | |
run_install: false | |
- name: Install dependencies | |
working-directory: . | |
run: pnpm i | |
- name: Run typecheck | |
working-directory: . | |
run: pnpm typecheck |