[#8756] 하드웨어 블록메뉴 다국어 수정, 교과형WS에서 연결 하드웨어 표기 추가 #2043
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: 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/' |