feat: routeMapper를 통한 pages 폴더의 파일 매핑처리 #26
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: eventloop-visualizer-deploy | |
on: | |
push: | |
branches: 'main' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ✅ 코드 체크아웃 | |
uses: actions/checkout@v3 | |
- name: 🔨 pnpm 설정 | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: ⬇️ 의존성 설치 | |
run: pnpm install | |
- name: 📦 프로젝트 빌드 | |
working-directory: './apps/jsEventLoopVisualizer' | |
run: pnpm run build | |
- name: 🚀github pages 배포 | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: './apps/jsEventLoopVisualizer/dist' |