[#47] fe cicd 작업 추가 #1
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: fe-dev 브랜치 깃허브 페이지스에 배포 | |
on: | |
pull_request: # master Branch에서 push 이벤트가 일어났을 때만 실행 | |
branches: | |
- fe-dev | |
jobs: | |
build: | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Install Dependencies # 의존 파일 설치 | |
run: pnpm install | |
- name: 배포 | |
run: pnpm run build |