Skip to content

[Fix] 컴포넌트 스타일 수정 #158

[Fix] 컴포넌트 스타일 수정

[Fix] 컴포넌트 스타일 수정 #158

Workflow file for this run

name: CI-Build
env:
NEXT_PUBLIC_SERVER_BASE_URL: ${{secrets.NEXT_PUBLIC_SERVER_BASE_URL }}
on:
pull_request:
branches: [main, develop]
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build