b3735ffbe2
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.
30 lines
477 B
YAML
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
|