feat: pdf组件增加视图缩放比例配置 #42
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
# Lint: | |
UnitTest: | |
# runner env | |
runs-on: ubuntu-latest | |
# steps | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pnpm/[email protected] | |
with: | |
version: 7.2.1 | |
- name: Install modules | |
run: pnpm install | |
- name: Run Test - lazy-load | |
run: cd packages/lazy-load && pnpm run test:run | |
- name: Run Test - seamless-scroll | |
run: cd packages/seamless-scroll && pnpm run test:run | |
- name: Run Test - table | |
run: cd packages/table && pnpm run test:run | |
- name: Run Test - pdf | |
run: cd packages/pdf && pnpm run test:run |