🔥 chore(keyboard): remove Ukelele #62
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: macOS CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| macos: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| - name: Install Node dependencies | |
| env: | |
| HUSKY: "0" | |
| run: npm ci | |
| - name: Run test suite | |
| run: npm test | |
| - name: Cache Homebrew | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/Library/Caches/Homebrew | |
| key: brew-${{ runner.os }}-${{ hashFiles('profiles/**/Brewfile') }} | |
| - name: Ensure Homebrew | |
| run: | | |
| if ! command -v brew >/dev/null 2>&1; then | |
| echo "Homebrew not found (unexpected on macOS runner)" | |
| exit 1 | |
| fi | |
| brew update | |
| brew analytics off | |
| - name: Prepare scripts | |
| run: chmod +x scripts/*.sh | |
| - name: Verify setup CLI contract | |
| run: bash scripts/cli.sh setup --profile minimal --dry-run | |
| - name: Install full profile | |
| run: brew bundle --file=profiles/full/Brewfile | |
| - name: Apply setup once | |
| run: CI=true bash scripts/setup.sh --profile full | |
| - name: Verify setup and hardening | |
| run: bash scripts/verify.sh |