Skip to content

Add E2E testing infrastructure #188

Add E2E testing infrastructure

Add E2E testing infrastructure #188

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, develop]
push:
branches: [main, develop]
permissions:
contents: read
jobs:
quality:
name: Code Quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install
- name: Type Check (Mobile)
run: npx tsc --noEmit
- name: Type Check (Docs)
run: cd apps/docs && pnpm run types:check
- name: Lint
run: npx eslint . --ext .ts,.tsx
- name: Test
run: npx jest --ci --coverage
- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/
retention-days: 14