Skip to content

Commit

Permalink
ci: PR 시 도커 이미지 빌드 테스트 수행
Browse files Browse the repository at this point in the history
  • Loading branch information
minjungw00 committed Nov 13, 2024
1 parent 91c7d5b commit f361783
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

jobs:
deploy:
name: Deploy on Server
runs-on: [self-hosted, boost-was] # 라벨에 해당하는 runner로 실행

steps:
Expand Down
30 changes: 22 additions & 8 deletions .github/workflows/lint_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
name: Lint and Test

on:
push:
branches:
- "**"
pull_request:
branches:
- main
- dev

jobs:
lint_and_test:
name: Lint and Test
lint_and_unit_test:
name: Lint and Unit Test
runs-on: ubuntu-latest

steps:
Expand All @@ -34,9 +31,26 @@ jobs:
cache: "pnpm"

# Run lint
- name: Run lint
- name: Run Lint
run: pnpm eslint .

# Run tests
- name: Run tests
# Run Unit tests
- name: Run Unit Tests
run: pnpm test

test_building_docker_image:
name: Test Building Docker Image
runs-on: ubuntu-latest

steps:
# Checkout the repository
- name: Checkout Repository
uses: actions/checkout@v4

# Test Building Docker Images
- name: Test Building Docker Images
env:
NODE_ENV: production
MONGO_URI: ${{ secrets.MONGO_URI }}
run: |
docker-compose build
38 changes: 38 additions & 0 deletions .github/workflows/lint_and_unit_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Lint and Unit Test

on:
push:
branches:
- "**"

jobs:
lint_and_unit_test:
name: Lint and Unit Test
runs-on: ubuntu-latest

steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4

# Install pnpm
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: true

# Set up Node.js
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"

# Run lint
- name: Run Lint
run: pnpm eslint .

# Run Unit tests
- name: Run Unit Tests
run: pnpm test

0 comments on commit f361783

Please sign in to comment.