Refactor employee search and improve notification handling
CI / build (push) Failing after 29s

- 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.
This commit is contained in:
eewing
2026-02-17 09:18:30 -06:00
parent 09487bbede
commit b3735ffbe2
+29
View File
@@ -0,0 +1,29 @@
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