[FE] 컴포넌트에서 직접 호출하는 useQuery를 커스텀 훅으로 분리 #219
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: CI | |
on: | |
pull_request: | |
branches: ['develop', 'main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
- name: install dependencies | |
run: yarn install | |
- name: build frontend | |
run: yarn frontend build | |
- name: build backend | |
run: yarn backend build | |
- name: run test | |
run: yarn backend test |