Keep control command runs from replacing active chat runs. #44
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 | |
| - "refactor/**" | |
| jobs: | |
| pc: | |
| name: PC check and tests | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: pc | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| cache-dependency-path: pc/package-lock.json | |
| - run: npm ci | |
| - run: npm run check | |
| - run: npm test | |
| - run: npm run build | |
| - run: test -z "$(git ls-files ':(top)pc/src/generated/codex-app-server/**')" | |
| android: | |
| name: Android tests and lint | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: android | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - uses: android-actions/setup-android@v3 | |
| - uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| gradle-version: 9.5.1 | |
| - run: gradle :app:assembleDebug :app:testDebugUnitTest :app:lintDebug |