[FE] client 디렉토리 reset, 전역 스타일 GlobalStyle을 사용하는 것으로 변경 #5
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-pull-request | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches: [main, fe-dev] | |
paths: | |
- 'client/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest log | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./client | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20.15.1' | |
- name: Install dependencies | |
working-directory: ./client | |
run: npm install | |
- name: Run lint | |
working-directory: ./client | |
run: npm run lint |