[Altino Neo]Steering 블록 버그 수정 #2331
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: PR Workflow | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| jobs: | |
| pr-labeler: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: TimonVS/pr-labeler-action@v3 | |
| with: | |
| configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| eslint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v3 | |
| with: | |
| version: 9 | |
| - run: pnpm install | |
| - uses: reviewdog/action-eslint@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-pr-review | |
| eslint_flags: '--ignore-pattern .eslintignore src/' |