Some checks failed
CI / Scraper / Test (pull_request) Failing after 9s
CI / UI / Build (pull_request) Failing after 9s
CI / Scraper / Lint (pull_request) Failing after 12s
CI / Scraper / Build (pull_request) Has been skipped
iOS CI / Build (push) Has been cancelled
iOS CI / Test (push) Has been cancelled
iOS CI / Build (pull_request) Failing after 2s
iOS CI / Test (pull_request) Has been skipped
- justfile: extract ios_scheme/ios_sim/ios_spm/runner_temp variables; add ios-resolve (SPM dep cache), ios-archive, ios-export recipes; pipe xcodebuild through xcpretty with raw fallback in ios-build/ios-test - ios.yaml: replace raw xcodebuild calls with just ios-build / just ios-test; install just via brew; uncommented archive job stub now calls just ios-archive && just ios-export; add justfile to path trigger - ci-scraper.yaml: install just via extractions/setup-just@v2; use just lint / just test; fix upload-artifact v3 -> v4; add justfile to path trigger - ci-ui.yaml: install just; use just ui-install / just ui-check / just ui-build; add justfile to path trigger
42 lines
966 B
YAML
42 lines
966 B
YAML
name: CI / UI
|
|
|
|
on:
|
|
push:
|
|
branches: ["main", "master"]
|
|
paths:
|
|
- "ui/**"
|
|
- "justfile"
|
|
- ".gitea/workflows/ci-ui.yaml"
|
|
pull_request:
|
|
branches: ["main", "master"]
|
|
paths:
|
|
- "ui/**"
|
|
- "justfile"
|
|
- ".gitea/workflows/ci-ui.yaml"
|
|
|
|
jobs:
|
|
# ── type-check & build ───────────────────────────────────────────────────────
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
cache: npm
|
|
cache-dependency-path: ui/package-lock.json
|
|
|
|
- name: Install just
|
|
uses: extractions/setup-just@v2
|
|
|
|
- name: Install dependencies
|
|
run: just ui-install
|
|
|
|
- name: Type check
|
|
run: just ui-check
|
|
|
|
- name: Build
|
|
run: just ui-build
|