[수정] 검색기록 최신순으로 저장되도록 변경 #369
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: 쿠링 앱타겟 iOS17에서 테스트하기 | |
on: | |
issue_comment: | |
types: [created, edited] | |
jobs: | |
build: | |
if: github.event.issue.pull_request && contains(github.event.comment.body, '/쿠링') && contains(github.event.comment.body, 'ios17 앱 테스트') | |
runs-on: macos-13 #최신버전 | |
steps: | |
# 테스트 요청 시작 | |
- name: Test iOS17 | |
run: | | |
echo "iOS17 에서 앱 타겟을 테스트 합니다." | |
# iOS17 테스트 응답 커멘트 | |
- name: Add Test comment | |
uses: actions/github-script@v5 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: '🔨 iOS 17 iPhone 14 Pro 에서 쿠링 앱을 테스트 합니다.' | |
}) | |
# 코드를 체크아웃 합니다. | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: refs/pull/${{ github.event.issue.number }}/head | |
# Xcode 버전을 설정합니다. | |
- name: Setup Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.0' | |
# KuringApp 스킴을 테스트합니다. | |
- name: KuringApp 테스트 | |
run: | | |
cd KuringApp | |
xcodebuild clean test -scheme KuringApp -destination 'platform=iOS Simulator,OS=latest,name=iPhone 14 Pro' -skipMacroValidation | |
# 테스트 성공시 커멘트 | |
- name: Add Build comment | |
uses: actions/github-script@v5 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: '✅ iOS17 에서 앱 타겟을 성공적으로 테스트 했습니다.' | |
}) | |
# 테스트 실패시 커멘트 | |
- name: Notify failure | |
uses: actions/github-script@v5 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: '📬 iOS17 에서 앱 타겟 테스트에 실패했습니다. Actions에서 실패 결과를 확인해주세요.' | |
}) | |
if: failure() |