Skip to content

[FE] 컴포넌트에서 직접 호출하는 useQuery를 커스텀 훅으로 분리 #219

[FE] 컴포넌트에서 직접 호출하는 useQuery를 커스텀 훅으로 분리

[FE] 컴포넌트에서 직접 호출하는 useQuery를 커스텀 훅으로 분리 #219

Workflow file for this run

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