From b3735ffbe2fae561175f2fdecfa3e5402a869034 Mon Sep 17 00:00:00 2001 From: eewing Date: Tue, 17 Feb 2026 09:18:30 -0600 Subject: [PATCH] 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. --- .gitea/workflows/ci.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..32d01e1 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -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