Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

react native test #109

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 25 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ permissions:
contents: read

jobs:
test:
timeout-minutes: 1
setup:
runs-on: ubuntu-latest

steps:
- name: Setup repo
uses: actions/checkout@v3
Expand All @@ -26,5 +24,29 @@ jobs:
- name: Verify formatting & other checks
run: make check

test:
needs: setup
timeout-minutes: 1
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3

- name: Setup Deno
uses: denoland/setup-deno@v1

- name: Run tests
run: make test

react_native_test:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: React Native CI
uses: aslamanver/react-native-docker@v1
- name: Install NPM Dependencies
run: npm install
- name: Run NX Dev Android Build
run: npx nx build-android mobile
Loading