Skip to content

[动态-直播信息扩充] 更新API接口,简化获取逻辑 #444

[动态-直播信息扩充] 更新API接口,简化获取逻辑

[动态-直播信息扩充] 更新API接口,简化获取逻辑 #444

name: Pull Request Check
on:
- pull_request
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Install dependencies
uses: pnpm/action-setup@v4
with:
version: 8.12.1
run_install: true
- name: Type check
run: pnpm run type
- name: ESLint check
run: pnpm run lint-check
- name: Build core
run: pnpm run build-core
- name: Build features
run: |
cd registry
pnpm install
cd ../
pnpm run build-features
- name: Log
run: echo Check complete.