Skip to content

New Zennies for Zingo address #3035

New Zennies for Zingo address

New Zennies for Zingo address #3035

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main, dev, stable]
workflow_dispatch:
jobs:
jest-test:
uses: ./.github/workflows/jest-test.yaml
create-timestamp:
uses: ./.github/workflows/create-timestamp.yaml
create-cache-key:
uses: ./.github/workflows/create-cache-key.yaml
android-build:
strategy:
matrix:
arch: [ x86_64, armeabi-v7a ]
uses: ./.github/workflows/android-build.yaml
needs: create-cache-key
with:
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
arch: ${{ matrix.arch }}
android-integration-test:
uses: ./.github/workflows/android-integration-test.yaml
needs: [ create-timestamp, create-cache-key, android-build ]
with:
timestamp: ${{ needs.create-timestamp.outputs.timestamp }}
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
abi: armeabi-v7a
ios-build:
uses: ./.github/workflows/ios-build.yaml
needs: create-cache-key
with:
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
ios-integration-test:
uses: ./.github/workflows/ios-integration-test.yaml
needs: [ create-timestamp, create-cache-key, ios-build ]
with:
timestamp: ${{ needs.create-timestamp.outputs.timestamp }}
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}