Skip to content

feat : [7] 버튼 공통 컴포넌트 생성 #26

feat : [7] 버튼 공통 컴포넌트 생성

feat : [7] 버튼 공통 컴포넌트 생성 #26

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npx eslint 'src/**/*.ts' # TypeScript 파일 검사
- name: Run Vitest
run: npx vitest run --config vitest.config.js # Vitest 실행, 설정 파일 지정