refactor: 검색 기능을 최적화한다 #413
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-test | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
paths: | |
- frontend/** | |
- .github/** | |
permissions: | |
contents: read | |
jobs: | |
test: | |
name: test-when-pull-request | |
runs-on: ubuntu-latest | |
environment: test | |
defaults: | |
run: | |
working-directory: ./frontend | |
steps: | |
- name: Checkout PR | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: npm install | |
- name: Test | |
run: npm run test |