Skip to content

Commit

Permalink
ci: Add linting/tests to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thehale committed Jun 23, 2024
1 parent f24edd3 commit 5bea94b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Standard Checks"

on:
push:
branches: ["master", "ci"]

jobs:
check:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: yarn
- name: Check lint rules
run: yarn lint
- name: Run JavaScript Tests
run: yarn test
- name: Run Android Tests
run: |
cd android
./gradlew test

0 comments on commit 5bea94b

Please sign in to comment.