Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[MOB-3113] Revert "[MOB-3113] Forcely perform snapshot tests"
This reverts commit 5e12431.
  • Loading branch information
d4r1091 committed Feb 6, 2025
commit 019461dab983de36e16a5df1a9a6fed44e24fe3a
18 changes: 9 additions & 9 deletions .github/workflows/snapshot_tests.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Snapshot Tests

on: push
# pull_request:
# paths:
# - 'Client/Configuration/Common.xcconfig'
on:
pull_request:
paths:
- 'Client/Configuration/Common.xcconfig'

jobs:
execute_snapshot_tests:
Expand All @@ -16,18 +16,18 @@ jobs:
with:
submodules: true

# - name: Check for MARKETING_VERSION change
# id: check_marketing_version
# run: sh ./check_marketing_version.sh
- name: Check for MARKETING_VERSION change
id: check_marketing_version
run: sh ./check_marketing_version.sh

- name: Prepare environment
# if : ( steps.check_marketing_version.outputs.skipnext != 'true' )
if : ( steps.check_marketing_version.outputs.skipnext != 'true' )
uses: ./.github/actions/prepare_environment
with:
core-token: ${{ secrets.IOS_CORE_TOKEN }}

- name: Perform Snapshot Tests and Publish Test reports
# if : ( steps.check_marketing_version.outputs.skipnext != 'true' )
if : ( steps.check_marketing_version.outputs.skipnext != 'true' )
id: perform-snapshot-tests
uses: ./.github/actions/perform_snapshot_tests
with:
Expand Down