불필요한 sdk 버전 안내 제거 #2686
Workflow file for this run
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: Lint | |
| on: push | |
| jobs: | |
| code: | |
| runs-on: ubuntu-latest | |
| name: Lint code and MDX files | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v3 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: "pnpm" | |
| - run: pnpm install | |
| - run: pnpm update-schema | |
| - run: pnpm gen-collections | |
| - run: pnpm check |