Skip to content

feat(frontend): scaffold expo app, design system, and mock screens #1

feat(frontend): scaffold expo app, design system, and mock screens

feat(frontend): scaffold expo app, design system, and mock screens #1

Workflow file for this run

name: Mobile CI
on:
push:
branches: [ main ]
paths:
- 'apps/mobile/**'
- '.github/workflows/mobile.yml'
pull_request:
branches: [ main ]
paths:
- 'apps/mobile/**'
- '.github/workflows/mobile.yml'
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/mobile
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: apps/mobile/package-lock.json
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Run Linter
run: npm run lint
- name: Run Tests
run: npm test