Skip to content

[Refactor/#156] 사이드바 드롭다운 오버플로우 처리 #254

[Refactor/#156] 사이드바 드롭다운 오버플로우 처리

[Refactor/#156] 사이드바 드롭다운 오버플로우 처리 #254

Workflow file for this run

name: CI
on:
pull_request:
branches:
- develop
- main
jobs:
lint-and-build:
name: Lint & Build
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install pnpm
run: npm install -g pnpm
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm lint
- name: Run build
run: pnpm build