[FE] 멤버 내역을 클릭할 때 에러 바운더리가 실행되는 버그 #50
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: frontend-pull-request | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches: [main, fe-dev] | |
paths: | |
- 'client/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./client | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20.15.1' | |
- name: Install dependencies | |
working-directory: ./client | |
run: npm install | |
- name: Run lint | |
working-directory: ./client | |
run: npm run lint |