Skip to content

feat: isa 서버액션 테스트 작성 #177

feat: isa 서버액션 테스트 작성

feat: isa 서버액션 테스트 작성 #177

Workflow file for this run

name: CI - Build Check
on:
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js (18.x)
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Lint check
run: npm run lint
- name: Type check (if using TypeScript)
run: npm run type-check
- name: Build
run: npm run build