markdown-lint 패키지 테스트 러너를 jest에서 vitest로 마이그레이션 #136
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: detect changed packages | |
| on: | |
| pull_request: | |
| branches: ['**'] | |
| types: [opened, reopened, labeled, unlabeled, synchronize] | |
| concurrency: | |
| group: detect-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| detect: | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }} | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v3 | |
| with: | |
| token: ${{ secrets.ACTION_TOKEN }} | |
| fetch-depth: 0 | |
| - uses: pnpm/action-setup@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: 'detect changed packages' | |
| uses: NaverPayDev/changeset-actions/detect-add@main | |
| with: | |
| github_token: ${{ secrets.ACTION_TOKEN }} | |
| packages_dir: packages | |
| skip_label: skip-detect-change | |
| skip_branches: main | |
| formatting_script: pnpm run markdownlint:fix |