Skip to content

[#51]refactor: 이미지 로드 및 UX 개선 #183

[#51]refactor: 이미지 로드 및 UX 개선

[#51]refactor: 이미지 로드 및 UX 개선 #183

name: PR Quality Checks
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
- dev
jobs:
code-quality-checks:
name: Quality Checks
runs-on: ubuntu-latest
env:
NEXT_PUBLIC_SITE_URL: ${{ secrets.NEXT_PUBLIC_SITE_URL }}
NEXT_PUBLIC_API_URL: ${{ secrets.NEXT_PUBLIC_API_URL }}
NEXT_PUBLIC_SENTRY_DSN: ${{ secrets.NEXT_PUBLIC_SENTRY_DSN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run TypeScript Type Check
run: npm run type-check
- name: Run Tests
run: npm test
- name: Build Storybook
run: npm run build-storybook
- name: Build Project
run: npm run build