[#20] 유저가 작성한 코드 결과 서버로 보내기 #15
Workflow file for this run
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: # fe-dev 브랜치에 pr이 Merge 됐을 때 실행해라! | |
branches: ["fe-dev"] | |
types: closed | |
jobs: | |
if_merged: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Dependencies # 의존 파일 설치 | |
run: pnpm install | |
- name: 빌드 실행 | |
run: pnpm run build |