docs: 언제나 런타임 세이프하게 환경변수를 관리하는 방법 Release #16
Workflow file for this run
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 |