[chore] 불필요한 pdf 제거 #12
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: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: ".nvmrc" | |
| cache: "pnpm" | |
| - run: pnpm install --frozen-lockfile | |
| - name: Format check | |
| run: pnpm run format:check | |
| - name: Markdown lint | |
| run: pnpm run lint:md | |
| - name: Link check | |
| run: pnpm run lint:links | |
| - name: Sidebar validation | |
| run: pnpm run lint:sidebar | |
| - name: Build docs | |
| run: pnpm run docs:build |