Skip to content

fix: 등록된 반려견이 없을 때 NotFoundPuppy 컴포넌트 사용 #719

fix: 등록된 반려견이 없을 때 NotFoundPuppy 컴포넌트 사용

fix: 등록된 반려견이 없을 때 NotFoundPuppy 컴포넌트 사용 #719

Workflow file for this run

name: TypeScript Check
on:
push:
branches:
- develop
- feature/**
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- name: Checkout source code # 레포지토리 체크아웃
uses: actions/checkout@v3
- name: Set up Node.js # Node.js 설정
uses: actions/setup-node@v3
with:
node-version: 20.17 # 프로젝트에 맞는 Node.js 버전을 설정
- name: Install dependencies # 의존성 설치
run: yarn install
- name: Run TypeScript check # 타입스크립트 체크
run: yarn tsc --noEmit
- name: Build the project # 프로젝트 빌드
run: yarn build