Skip to content

[translate] get-started 페이지 내용 업데이트 및 번역 #61

[translate] get-started 페이지 내용 업데이트 및 번역

[translate] get-started 페이지 내용 업데이트 및 번역 #61

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "*"
jobs:
build-test-lint-typecheck:
runs-on: ubuntu-latest
steps:
- name: 코드 체크아웃
uses: actions/checkout@v4
- name: Node.js 설정
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: 의존성 설치
run: npm ci
- name: Vite 프로젝트 빌드
run: npm run build
- name: 린트 체크
run: npm run lint:check
- name: 프리티어 체크
run: npm run prettier:check
- name: 타입 체크
run: npm run type:check
- name: 테스트 실행
run: npm run test