Skip to content

[Fix] 팀채팅 목록에서 채팅방 유저 이미지 반환 정상화 #173

[Fix] 팀채팅 목록에서 채팅방 유저 이미지 반환 정상화

[Fix] 팀채팅 목록에서 채팅방 유저 이미지 반환 정상화 #173

Workflow file for this run

name: Test on Pull Request
on:
pull_request:
branches: [ "develop", "main" ]
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis:7-alpine
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 5s
--health-timeout 3s
--health-retries 20
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
- name: Run tests
run: ./gradlew test --no-daemon --parallel
- name: Build bootJar
run: ./gradlew :nect-api:bootJar --no-daemon --parallel