Files
HRM/.gitea/workflows/ci.yml
T
eewing b3735ffbe2
CI / build (push) Failing after 29s
Refactor employee search and improve notification handling
- Enhanced employee search functionality with improved pagination and loading logic.
- Refined toast notification integration using svelte-sonner for better user feedback.
- Updated employee detail view for improved navigation and UI interactions.
2026-02-17 09:18:30 -06:00

30 lines
477 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Sync SvelteKit
run: bunx svelte-kit sync
- name: Type check
run: bun run check
- name: Build
run: bun run build