Fix Space#moveWindows on Sonoma 14.5. (#350) #113
This file contains 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: Build Phoenix | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.2.0 | |
- name: Build docs | |
working-directory: docs | |
run: | | |
npm ci | |
npm run lint | |
npm run build | |
- name: Install ClangFormat | |
run: brew install clang-format | |
- name: Build Launcher | |
uses: sersoft-gmbh/xcodebuild-action@v2 | |
with: | |
workspace: Phoenix.xcworkspace | |
scheme: Launcher | |
action: test build | |
- name: Build Phoenix | |
uses: sersoft-gmbh/xcodebuild-action@v2 | |
with: | |
workspace: Phoenix.xcworkspace | |
scheme: Phoenix | |
action: test build |