[FE] 특정 테이블 셀에 마우스를 올리거나, 클릭하면 해당 셀을 선택한 약속 참여자들을 확인할 수 있는 툴팁 컴포넌트 구현 #251
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Backend CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ['develop'] | |
permissions: | |
checks: write | |
pull-requests: write | |
jobs: | |
detect-changes: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read | |
outputs: | |
backend: ${{ steps.filter.outputs.backend }} | |
frontend: ${{ steps.filter.outputs.frontend }} | |
manual: ${{ steps.manualcheck.outputs.manual }} | |
steps: | |
- id: manualcheck | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
run: echo "manual=true" >> "$GITHUB_OUTPUT" | |
- uses: dorny/paths-filter@v3 | |
if: ${{ github.event_name != 'workflow_dispatch' }} | |
id: filter | |
with: | |
filters: | | |
backend: | |
- 'backend/**' | |
frontend: | |
- 'frontend/**' | |
list-files: 'csv' | |
be-test: | |
needs: detect-changes | |
if: ${{ needs.detect-changes.outputs.backend == 'true' || needs.detect-changes.outputs.manual == 'true' }} | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./backend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Grant gradlew execute permission | |
run: chmod +x ./gradlew | |
- name: Test with Gradle | |
run: ./gradlew clean test | |
- name: Publish unit test results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: | | |
backend/build/test-results/test/TEST-*.xml | |
- name: Add comments to PR | |
uses: mikepenz/action-junit-report@v4 | |
if: always() | |
with: | |
report_paths: | | |
backend/build/test-results/test/TEST-*.xml |