Skip to content

[IMPROVE] 공통 UI 컴포넌트 packages로 분리 #11

[IMPROVE] 공통 UI 컴포넌트 packages로 분리

[IMPROVE] 공통 UI 컴포넌트 packages로 분리 #11

Workflow file for this run

name: Check Build
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Create .env file
run: |
echo "${{ secrets.PROD_ENV }}" > .env
- name: Enable Corepack & Prepare pnpm
run: |
corepack enable
corepack prepare pnpm@latest --activate
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build --filter=web