Skip to content

[style] Unify Sentence Endings in 'REPL Works Compatible Projects' Se… #80

[style] Unify Sentence Endings in 'REPL Works Compatible Projects' Se…

[style] Unify Sentence Endings in 'REPL Works Compatible Projects' Se… #80

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
continuous-integration:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Check Code Quality & Formatting
run: |
npm run lint
npm run format:check
- name: Build Astro site
run: npm run build
env:
NODE_ENV: production
# 필요한 경우 이곳에 환경 변수(수동 토큰 등)를 추가하세요.
# 빌드된 결과물(dist 폴더)이 잘 생성되었는지 파일 점검 (선택 사항)
- name: Check build output
run: ls -la dist