Skip to content

[refactor] Portal 컴포넌트 모달에서 분리 및 공통컴포넌트로 변경 #356

[refactor] Portal 컴포넌트 모달에서 분리 및 공통컴포넌트로 변경

[refactor] Portal 컴포넌트 모달에서 분리 및 공통컴포넌트로 변경 #356

Workflow file for this run

name: Frontend CI
on:
pull_request:
branches: [main, develop-fe]
paths:
- 'frontend/**'
- '.github/workflows/frontend-ci.yml'
jobs:
ci:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Prettier check
run: npx prettier --check "**/*.{ts,tsx,js,jsx,css,scss}"
- name: Lint
run: npm run lint
- name: Build
env:
SKIP_DYNAMIC_SITEMAP: 'true'
run: npm run build