[Hotfix] 폴더 구조 수정 및 이벤트 기간 설정에 따른 콘텐츠 텍스트 수정, 숨캐찾 게임내의 사진 에러 수정 #59
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: 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 |