Skip to content

Feat: tax-saving 서버 액션에 대한 테스트 코드 작성 #176

Feat: tax-saving 서버 액션에 대한 테스트 코드 작성

Feat: tax-saving 서버 액션에 대한 테스트 코드 작성 #176

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