Merge pull request #1958 from Solid-Money/claude/cashback-escrow-stat… #4103
This file contains hidden or 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: Lint & Format | |
| on: | |
| push: | |
| branches: [master, qa] | |
| pull_request: | |
| branches: [master, qa] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run ESLint with Expo (includes Prettier) | |
| run: npm run lint | |
| # Temporarily disabled - fix TypeScript errors first | |
| # - name: TypeScript compilation check | |
| # run: npx tsc --noEmit |