feat: 전체적인 의존성 Bump , workflows 개선 #2
This file contains 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: Knip | |
on: | |
push: | |
branches: [dev] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
env: | |
CI: ${{ vars.CI }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
knip: | |
name: Knip | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/pnpm-setup-node | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm ci:knip | |
- name: Run Knip | |
id: knip | |
run: pnpm ci:knip > knip-output.txt || true |