Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-backend-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
test:
name: Backend Tests
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
17 changes: 12 additions & 5 deletions .github/workflows/pr-build-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
build:
name: Build Validation
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -36,7 +36,14 @@ jobs:
exit 1
fi

- name: Build validation
run: |
echo "Running full build validation (lint, format, typecheck, frontend + Tauri build)..."
bun run validate-build
- name: Lint
run: bun run lint

- name: Format check
run: bun run format:check

- name: Typecheck
run: bun run typecheck

- name: Frontend build
run: bun run build:frontend
Loading