Skip to content

Feature/dev 3525 track popup shown #436

Feature/dev 3525 track popup shown

Feature/dev 3525 track popup shown #436

Workflow file for this run

name: Check PR
on:
pull_request:
types:
- opened
- reopened
- synchronize
paths-ignore:
- .github
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
vars:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
outputs:
test-shop-id: ${{ steps.test.outputs.test-shop-id }}
test-api-url: ${{ steps.test.outputs.test-api-url }}
steps:
- name: Confirm variables set
id: test
env:
TEST_SHOP_ID: ${{ secrets.TEST_SHOP_ID }}
TEST_API_URL: ${{ secrets.TEST_API_URL }}
run: |
echo "test-shop-id=$(echo $TEST_SHOP_ID | base64 -w0 | base64 -w0)" >> $GITHUB_OUTPUT
echo "test-api-url=$(echo $TEST_API_URL | base64 -w0 | base64 -w0)" >> $GITHUB_OUTPUT
run:
if: github.event.pull_request.draft == false
needs: vars
uses: rees46/workflow/.github/workflows/reusable-ios-checks.yaml@master
permissions: write-all
secrets:
cocoapodsToken: ${{ secrets.COCOAPODS_TOKEN }}
googleServicesString: ${{ secrets.GOOGLE_SERVICES_IOS_FILE_AS_BASE64_STRING }}
env_vars: |
TEST_RUNNER_TEST_SHOP_ID=${{ needs.vars.outputs.test-shop-id }}
TEST_RUNNER_TEST_API_URL=${{ needs.vars.outputs.test-api-url }}