fix: 배포시 favicon이 보이지 않는 문제 개선한다 #54
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 |