서포터 선택 상세정보 개발언어 추가, 분야별 필터링 기능 구현 (#181) #32
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 |