Skip to content

♻️ 컴포넌트 연결 리펙토링 #28

♻️ 컴포넌트 연결 리펙토링

♻️ 컴포넌트 연결 리펙토링 #28

Workflow file for this run

name: Build test
on:
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 코드 체크아웃중...
uses: actions/checkout@v4
- name: 노드 버전 설정중...
uses: actions/setup-node@v4
with:
node-version: "23"
- name: pnpm 설치중..
run: npm install -g pnpm
- name: 종속성 설치중...
run: pnpm install
- name: 빌드 중..
run: pnpm build