Skip to content

Commit

Permalink
setting: PR 빌드 자동화
Browse files Browse the repository at this point in the history
  • Loading branch information
yeyounging authored Oct 19, 2024
1 parent 7b595bd commit e7fbfdd
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: 레포지토리 체크아웃 중..
uses: actions/checkout@v2

- name: node 설치중..
uses: actions/setup-node@v2
with:
node-version: '18.18.2'

- name: 종속성 설치중...
run: npm install

- name: 빌드 중..
run: npm run build

0 comments on commit e7fbfdd

Please sign in to comment.