chore: rebrand user-facing references to Altimate Code #2
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: Branding Check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: branding-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| branding-audit: | |
| name: Branding Audit | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - uses: ./.github/actions/setup-bun | |
| - name: Install merge tooling dependencies | |
| run: cd script/upstream && bun install | |
| - name: Run branding audit | |
| run: bun run script/upstream/analyze.ts --branding | |
| - name: Run verbose audit on failure | |
| if: failure() | |
| run: bun run script/upstream/analyze.ts --branding --verbose > branding-audit-output.txt 2>&1 || true | |
| - name: Upload audit output | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: branding-audit-output | |
| path: branding-audit-output.txt | |
| retention-days: 7 | |
| branding-tests: | |
| name: Branding Tests | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - uses: ./.github/actions/setup-bun | |
| - name: Run branding tests | |
| run: cd packages/opencode && bun test test/branding/ |