Skip to content

[Hotfix] 레이싱 게임 스페이스 컨트롤을 useKeyBoardControl 커스텀 훅으로 리팩토링 후 게임 플레이 시간을 랜덤으로 작동하게 수정 #57

[Hotfix] 레이싱 게임 스페이스 컨트롤을 useKeyBoardControl 커스텀 훅으로 리팩토링 후 게임 플레이 시간을 랜덤으로 작동하게 수정

[Hotfix] 레이싱 게임 스페이스 컨트롤을 useKeyBoardControl 커스텀 훅으로 리팩토링 후 게임 플레이 시간을 랜덤으로 작동하게 수정 #57

Workflow file for this run

name: Deploy
on:
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Install dependencies including TypeScript, React, and Vite
run: npm install --save-dev typescript @types/react @types/react-dom vite @vitejs/plugin-react @types/node
working-directory: ./Caecae
- name: Install other dependencies with Yarn
run: yarn install
working-directory: ./Caecae
- name: Build project
run: npm run build
working-directory: ./Caecae