FRE-5186: CTO Recovery - FRE-5134 pipeline reassignment to Security Reviewer

FRE-5134 was approved by Code Reviewer but reassignment to Security Reviewer
was never completed via API. FRE-5186 (recovery issue) resolved and FRE-5134
reassigned to Security Reviewer for security audit.

- FRE-5186 marked DONE with recovery plan
- FRE-5134 reassigned from Code Reviewer to Security Reviewer (036d6925-3aac-4939-a0f0-22dc44e618bc)
- FRE-5134 status set to in_progress for security audit
This commit is contained in:
2026-05-12 10:59:54 -04:00
parent fb8cca6c13
commit 727a160987
18 changed files with 1510 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
name: Nessa Phase 1 Tests
on:
push:
paths:
- 'NessaTests/**'
- 'Nessa.xcodeproj/**'
pull_request:
paths:
- 'NessaTests/**'
- 'Nessa.xcodeproj/**'
workflow_dispatch:
jobs:
test:
runs-on: [self-hosted, macOS]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Select Xcode
run: |
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
xcodebuild -version
- name: Run Phase 1 Tests
run: |
xcodebuild test \
-project Nessa.xcodeproj \
-scheme Nessa \
-destination "platform=iOS Simulator,name=iPhone 16"
- name: Test Report
if: always()
run: |
echo "Tests completed with status: ${{ job.status }}"