api 에러시 보여주는 문구 변경 (#521) #226
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 |