Skip to content

Improve EAS build commands and fix workflow configurations #8

Improve EAS build commands and fix workflow configurations

Improve EAS build commands and fix workflow configurations #8

Workflow file for this run

name: Validate Project
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Setup Expo
uses: expo/expo-github-action@v8
with:
expo-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Check for code quality issues
run: npx expo-doctor
- name: Run tests
run: |
# Add your test command here if you have tests
# npm test