Check Unused Dependencies #146
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: Check Unused Dependencies | |
| on: | |
| schedule: | |
| - cron: '0 3 * * 1' # 매주 월요일 03시 (한국 시간 12시) | |
| jobs: | |
| check-unused: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node: [20] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup-pnpm | |
| - name: Check unused dependencies | |
| run: pnpm knip |