[TASK-74, TASK-77] fix: 작품 목록 페이지 반응형 시, UI 깨짐 현상 해결 및 <Image /> 태그에 fill, sizes, priority 지정 #18
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: Qodana Code Review | |
on: | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
qodana: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: Setup Qodana | |
uses: JetBrains/[email protected] | |
with: | |
results-dir: ./qodana-results | |
pr-mode: true # PR에 분석 결과를 주석으로 추가 | |
env: | |
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_592621362 }} | |
QODANA_ENDPOINT: 'https://qodana.cloud' | |
- name: Upload Qodana Results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: qodana-results | |
path: ./qodana-results |