Skip to content

Update Apollo GraphQL packages to v4 #86

Update Apollo GraphQL packages to v4

Update Apollo GraphQL packages to v4 #86

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
js:
name: JS checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Installs node, bun, and java from mise.toml so CI and local builds
# share one source of truth — a bad version fails here, not just locally.
- uses: jdx/mise-action@v2
- run: bun install --frozen-lockfile
- name: TypeScript
run: bunx tsc --noEmit
- name: Biome (lint + format check)
if: github.event_name == 'pull_request'
run: bun run lint
- name: Test
run: bun run test -- --ci
android:
name: Android assembleDebug
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Installs node, bun, and java from mise.toml so CI and local builds
# share one source of truth — a bad version fails here, not just locally.
- uses: jdx/mise-action@v2
- uses: gradle/actions/setup-gradle@v4
- run: bun install --frozen-lockfile
- name: assembleDebug
working-directory: android
run: ./gradlew assembleDebug --no-daemon --stacktrace