Files
swiftapp/.github/workflows/ci.yml
Jürgen Kunz a6939453f8
Some checks failed
CI / test (push) Has been cancelled
Adopt root-level tsswift app layout
Move the app payload under swift/ while keeping git, package.json, and .smartconfig.json at the repo root. This standardizes the Swift app setup so build, test, run, and watch workflows match the other repos.
2026-04-19 01:21:43 +02:00

28 lines
491 B
YAML

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Install tooling dependencies
run: corepack pnpm install
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode.app
- name: Build macOS app
run: corepack pnpm swift:build:macos
- name: Run macOS tests
run: corepack pnpm swift:test