Skip to content

add workflow dispatch #1

add workflow dispatch

add workflow dispatch #1

Workflow file for this run

name: CI Tests
on:
pull_request:
types: [opened, edited]
workflow_dispatch

Check failure on line 6 in .github/workflows/ci-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-test.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
jobs:
android-new-arch-test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Run Android Tests
run: |
npm install
npm run test:android
ios-new-arch-test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Run iOS Tests
run: |
npm install
npm run test:ios
android-old-arch-test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Run Android Tests
run: |
npm install
npm run test:oldArch:android
ios-old-arch-test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Run iOS Tests
run: |
npm install
npm run test:oldArch:ios