Skip to content

Commit

Permalink
Chore: github actions build ci 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
MEGUMMY1 committed Jul 12, 2024
1 parent 7824043 commit 11065ca
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build # workflow 의 이름

on: push # workflow 의 실행 시점

jobs:
build: # job 의 이름
runs-on: ubuntu-latest # 실행할 OS 환경
steps: # job 의 세부 단계
# step1 : 코드 체크아웃
- name: Checkout code
uses: actions/checkout@v4

# step2 : Node.js 설치
- name: Install dependencies
run: npm install

# step3 : 빌드
- name: Build Next.js app
run: npm run build

0 comments on commit 11065ca

Please sign in to comment.