[组件-下载视频][插件-下载视频 - aria2 输出支持][组件-查看封面] 为aria2提供可下载封面的功能 #414
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: Pull Request Check | |
on: | |
- pull_request | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Install dependencies | |
uses: pnpm/action-setup@v2.2.4 | |
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. |