Skip to content

[BE] fix: 회원가입 트랜잭션 범위 수정 & 타임아웃 시그널 수정 #257

[BE] fix: 회원가입 트랜잭션 범위 수정 & 타임아웃 시그널 수정

[BE] fix: 회원가입 트랜잭션 범위 수정 & 타임아웃 시그널 수정 #257

Workflow file for this run

name: backEnd running server CI
on:
pull_request:
branches: [BE/release, dev, main]
permissions:
contents: read
jobs:
running-server:
runs-on: ubuntu-latest
steps:
- name: ✅ 코드 체크아웃
uses: actions/checkout@v3
- name: 👻 노드 설정
uses: actions/setup-node@v3
with:
node-version: 18.16.0
- name: ⬇️ 의존성 설치
working-directory: ./backEnd/running
run: npm ci
- name: 📦 프로젝트 빌드
working-directory: ./backEnd/running
run: npm run build