Skip to content

添加了审核状态及可选的修改意见的api,在routers里面增加了reviewNotes方法,并在数据表里增加了reviewNotes字段 #52

添加了审核状态及可选的修改意见的api,在routers里面增加了reviewNotes方法,并在数据表里增加了reviewNotes字段

添加了审核状态及可选的修改意见的api,在routers里面增加了reviewNotes方法,并在数据表里增加了reviewNotes字段 #52

Workflow file for this run

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