rollback nav #295
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: Dev CI # Workflow 이름 | |
on: # Event 감지 | |
pull_request: | |
branches: | |
- develop | |
jobs: # Job 설정 | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code. # Repo checkout | |
uses: actions/checkout@v2 | |
- name: Check Node v # Node v 확인 | |
run: node -v | |
- name: Install Dependencies # 의존 파일 설치 | |
run: yarn install --frozen-lockfile | |
- name: Build # React Build | |
run: yarn build |