Clearer and type safe fingerprintAuthorities mock. #95
Workflow file for this run
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: checks | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: read | |
checks: write | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version-file: '.node-version' | |
cache: 'npm' | |
- uses: actions/[email protected] | |
with: | |
java-version: 21 | |
distribution: temurin | |
cache: 'gradle' | |
- uses: amyu/setup-android@v4 | |
- name: npm install | |
run: | | |
. environment | |
npm ci | |
- name: prebuild | |
run: | | |
. environment | |
expo prebuild | |
- name: npm run lint | |
run: | | |
. environment | |
npm run lint | |
- name: tsc | |
run: | | |
. environment | |
tsc | |
- name: npm test | |
run: | | |
. environment | |
npm test | |
- name: npm run android-test | |
run: | | |
. environment | |
npm run android-test | |
- name: test report - android gradle test | |
uses: actions/[email protected] | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: android-test | |
path: node_modules/expo-dev-launcher/android/build/reports/tests/testDebugUnitTest/ |