feat: Update Hashed Email for Rokt #24
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| checks: write | |
| id-token: write | |
| jobs: | |
| pr-branch-check-name: | |
| name: "Check PR for semantic branch name" | |
| uses: mParticle/mparticle-workflows/.github/workflows/pr-branch-check-name.yml@stable | |
| pr-title-check: | |
| name: "Check PR for semantic title" | |
| uses: mParticle/mparticle-workflows/.github/workflows/pr-title-check.yml@stable | |
| pr-branch-target-gitflow: | |
| name: "Check PR for semantic target branch" | |
| uses: mParticle/mparticle-workflows/.github/workflows/pr-branch-target-gitflow.yml@stable | |
| test: | |
| name: Test | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Xcode 16 | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: 16.3.0 | |
| - name: Run Tests | |
| run: > | |
| set -o pipefail && | |
| xcodebuild test -project mParticle-Rokt.xcodeproj -scheme mParticle_RoktTests -destination 'platform=iOS Simulator,name=iPhone 16,OS=latest' | |
| | xcbeautify --renderer github-actions | |
| shell: bash | |
| pr-notify: | |
| if: > | |
| github.event_name == 'pull_request' && | |
| github.event.pull_request.draft == false | |
| needs: | |
| - test | |
| name: Notify GChat | |
| uses: ROKT/rokt-workflows/.github/workflows/oss_pr_opened_notification.yml@main | |
| secrets: | |
| gchat_webhook: ${{ secrets.GCHAT_PRS_WEBHOOK }} |