fix: 충전소 리스트에서 로딩을 보여주지 않아도 되는 상황에 보여지는 현상을 개선한다 #406
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-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 |