Browse Source

chore: run checks on main branch (#738)

master
Henning Hall 1 year ago
committed by GitHub
parent
commit
4bf6aae02c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 0 deletions
  1. +30
    -0
      .github/workflows/push-main.yml

+ 30
- 0
.github/workflows/push-main.yml View File

@ -0,0 +1,30 @@
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

Loading…
Cancel
Save