Skip to content

add report

add report #13

on:
push:
branches:
- main
jobs:
build:
name: Build Android APK
runs-on: ubuntu-latest
defaults:
run:
working-directory: mobile
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v3
- name: Enable corepack
run: corepack enable
- name: πŸ— Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: πŸ— Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: πŸ“¦ Install dependencies
run: yarn install
- name: πŸš€ Build app
run: eas build --non-interactive -p android