Skip to content

[번역] introduction 추가 및 기존 번역 수정 #5

[번역] introduction 추가 및 기존 번역 수정

[번역] introduction 추가 및 기존 번역 수정 #5

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 || echo "No type:check script"
- name: 테스트
run: npm run test || echo "No test script defined"