Skip to content

refactor: 이력서 관리 페이지 msw #923

refactor: 이력서 관리 페이지 msw

refactor: 이력서 관리 페이지 msw #923

Workflow file for this run

# main 브랜치에 push되거나 pr이 생성될 때마다 빌드 테스트가 실행됨
name: Build Test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
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 ci
- name: Build React app
run: npm run build