feat: number the zones in the drag overlay #10
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| app: | |
| # macos-14 still ships Swift 5.10; Package.swift needs tools version 6.0. | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Build | |
| run: swift build | |
| working-directory: App | |
| - name: Test | |
| run: ./scripts/test.sh | |
| mcp: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: mcp/package-lock.json | |
| - run: npm ci | |
| working-directory: mcp | |
| - run: npm run typecheck | |
| working-directory: mcp |