Skip to content

design: 상세페이지 새 이미지 사이즈 정리 #560

design: 상세페이지 새 이미지 사이즈 정리

design: 상세페이지 새 이미지 사이즈 정리 #560

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: ['main']
jobs:
build-react:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- name: Build React
run: npm run build --if-present
build-storybook:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- name: Build Storybook
run: npm run build-storybook --if-present