Skip to content

[GWL-48] [FIX] 수동 배포에서 자동 배포로 구현하기 [도커] #83

[GWL-48] [FIX] 수동 배포에서 자동 배포로 구현하기 [도커]

[GWL-48] [FIX] 수동 배포에서 자동 배포로 구현하기 [도커] #83

Workflow file for this run

name: BackEnd-CI
on:
pull_request:
branches: 'develop'
types: [opened, synchronize, reopened, edited]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: 코드 체크아웃
uses: actions/checkout@v3
- name: node 세팅
uses: actions/setup-node@v2
with:
node-version: '18'
- name: 의존성 설치
run: npm ci
working-directory: ./BackEnd
- name: 테스트 진행
run: npm test
working-directory: ./BackEnd