Skip to content

fix error

fix error #2

Workflow file for this run

name: CI Tests
on:
pull_request:
types: [opened, edited]
workflow_dispatch:
jobs:
android-new-arch-test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Run Android Tests
run: |
npm install

Check failure on line 16 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 16
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