Set up automated dependency updates via self-hosted Renovate (#20) #56
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 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: '1.2' | |
| - 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 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: '1.2' | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - uses: gradle/actions/setup-gradle@v4 | |
| - run: bun install --frozen-lockfile | |
| - name: assembleDebug | |
| working-directory: android | |
| run: ./gradlew assembleDebug --no-daemon --stacktrace |