ci: Add linting/tests to CI #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |