You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
563 B

name: Push main
on:
workflow_dispatch:
push:
branches:
- master
jobs:
test-js:
name: Test
uses: ./.github/workflows/test-js.yml
secrets: inherit
test-android-unit:
name: Test
uses: ./.github/workflows/test-android-unit.yml
secrets: inherit
build-ios:
name: Build
needs: [test-js, test-android-unit]
uses: ./.github/workflows/build-ios.yml
secrets: inherit
build-android:
needs: [test-js, test-android-unit]
name: Build
uses: ./.github/workflows/build-android.yml
secrets: inherit