Update Apollo GraphQL packages to v4 #86
Workflow file for this run
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: 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 |