Skip to content

Commit

Permalink
test: CI과정에 백엔드 E2E테스트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
choyoungwoo9 committed Aug 18, 2024
1 parent 9564a94 commit 98db4e1
Showing 1 changed file with 38 additions and 2 deletions.
40 changes: 38 additions & 2 deletions .github/workflows/dev.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,28 @@ on:
paths:
- 'backend/**'
- 'frontend/**'
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

services:
mysql:
image: mysql:latest
env:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: test
MYSQL_USER: user
MYSQL_PASSWORD: password
ports:
- 3306:3306
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -30,14 +48,32 @@ jobs:
with:
node-version: '20'

- name: DevServer Backend CI
- name: DevServer Backend CI(Unit Test)
if: steps.changes.outputs.backend == 'true'
run: |
cd ./backend
npm install
npm run build
NODE_ENV=CI npm run test
cd ..
- name: DevServer Backend CI(E2E Test)
if: steps.changes.outputs.backend == 'true'
env:
DATABASE_HOST: 127.0.0.1
DATABASE_PORT: 3306
DATABASE_USER: root
DATABASE_PASSWORD: password
DATABASE_NAME: test
JWT_SECRET: JWT_SECRET
GITHUB_CLIENT_ID: GITHUB_CLIENT_ID
GITHUB_CLIENT_SECRETS: GITHUB_CLIENT_SECRETS
run: |
cd ./backend
npm install
npm run build
NODE_ENV=CI npm run test:e2e
cd ..
- name: DevServer Frontend CI
if: steps.changes.outputs.frontend == 'true' && always()
Expand All @@ -46,4 +82,4 @@ jobs:
npm install
npm run build
npm run test
cd ..
cd ..

0 comments on commit 98db4e1

Please sign in to comment.