서포터 선택 필터 기능 useEffect dependency 수정 #34
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_ci | |
on: | |
push: | |
branches: | |
- dev/FE | |
paths: 'frontend/**' | |
pull_request: | |
branches: | |
- dev/FE | |
paths: 'frontend/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./frontend | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: 의존성을 설치한다 | |
run: npm install | |
- name: 테스트를 수행한다 | |
run: npm run test |