统一了界面样式,并在introduction界面添加了导航栏,优化主页向下指示箭头样式,移动端兼容性未测试 #18
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: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: checkout | |
| name: Checkout | |
| uses: actions/checkout@v3 | |
| - id: setup-bun | |
| name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: latest | |
| - id: install-deps | |
| name: Install dependencies | |
| run: | | |
| bun install | |
| - name: Lint | |
| run: bun lint --no-fix |