Skip to content

chore: remove unused expo-module-scripts #21

chore: remove unused expo-module-scripts

chore: remove unused expo-module-scripts #21

Workflow file for this run

name: CI - Biome and TypeScript
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run biome and typescript checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run TypeScript checks
run: bun tsc --noEmit
- name: Run Biome check
run: bun biome ci .
- name: Run tests
run: bun test