Skip to content

[Feature] 레이아웃, 네비게이션 컴포넌트 구현 #27

[Feature] 레이아웃, 네비게이션 컴포넌트 구현

[Feature] 레이아웃, 네비게이션 컴포넌트 구현 #27

Workflow file for this run

name: Auto Build
on:
push:
branches:
- main
- dev
pull_request:
types: [opened, ready_for_review, converted_to_draft, synchronize]
branches:
- main
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js 21.x
uses: actions/setup-node@v2
with:
node-version: 21.x
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Run build
run: pnpm run build