04ae576 Show on GitHub

  • Author: RazanSagheer
  • Date: 2/11/2026, 2:23:43 PM
  • Message: Merge pull request #243 from fdnd-agency/242-cicd-as-a-developer-i-want-to-automatically-test-and-deploy-the-sveltekit-project-using-github-actions-so-we-can-catch-errors-early-and-deploy-faster 242 cicd as a developer i want to automatically test and deploy the sveltekit project using GitHub actions so we can catch errors early and deploy faster
  • Stats: 6376 total changes (+3863 / -2513)

Changed Files

  • .github/workflows/ci.yml — +36 / -0 (36 changes)
  • .prettierrc — +7 / -0 (7 changes)
  • CONTRIBUTING.md — +260 / -245 (505 changes)
  • HANDOVER.md — +17 / -21 (38 changes)
  • README.md — +15 / -1 (16 changes)
  • docs/components.md — +50 / -35 (85 changes)
  • docs/database.md — +1 / -2 (3 changes)
  • eslint.config.js — +21 / -0 (21 changes)
  • jsconfig.json — +11 / -11 (22 changes)
  • package-lock.json — +3000 / -1732 (4732 changes)
  • package.json — +32 / -25 (57 changes)
  • postcss.config.cjs — +1 / -1 (2 changes)
  • src/app.html — +11 / -13 (24 changes)
  • src/lib/components/animations/PageLoader.svelte — +6 / -3 (9 changes)
  • src/lib/components/buttons/FilterButton.svelte — +2 / -2 (4 changes)
  • src/lib/components/cards/PdfCard.svelte — +1 / -4 (5 changes)
  • src/lib/components/cards/QuestionCard.svelte — +1 / -1 (2 changes)
  • src/lib/components/cards/ResearchArticleCard.svelte — +3 / -2 (5 changes)
  • src/lib/components/charts/CircleGraph.svelte — +2 / -2 (4 changes)
  • src/lib/components/charts/CompareGradingTable.svelte — +1 / -7 (8 changes)
  • src/lib/components/form/FilterForm.svelte — +0 / -1 (1 changes)
  • src/lib/components/form/QuestionsForm.svelte — +1 / -2 (3 changes)
  • src/lib/components/form/SearchBar.svelte — +1 / -1 (2 changes)
  • src/lib/components/layout/MobileNav.svelte — +9 / -6 (15 changes)
  • src/lib/components/layout/Navbar.svelte — +9 / -6 (15 changes)
  • src/lib/components/layout/Sidebar.svelte — +7 / -3 (10 changes)
  • src/lib/components/textual/Heading.svelte — +1 / -1 (2 changes)
  • src/lib/css/styleguide.css — +208 / -208 (416 changes)
  • src/lib/data/demoEmails.json — +1 / -1 (2 changes)
  • src/lib/helpers/dashboardStats.js — +31 / -23 (54 changes)
  • src/lib/index.js — +11 / -13 (24 changes)
  • src/lib/stores/sidebar.js — +2 / -2 (4 changes)
  • src/routes/+error.svelte — +5 / -1 (6 changes)
  • src/routes/+page.server.js — +30 / -31 (61 changes)
  • src/routes/notifications/+page.svelte — +1 / -1 (2 changes)
  • src/routes/research/+page.server.js — +33 / -51 (84 changes)
  • src/routes/research/+page.svelte — +4 / -9 (13 changes)
  • src/routes/research/[article_id]/+page.server.js — +11 / -11 (22 changes)
  • src/routes/research/[article_id]/+page.svelte — +0 / -3 (3 changes)
  • src/routes/results/+page.server.js — +8 / -11 (19 changes)
  • src/routes/results/+page.svelte — +0 / -6 (6 changes)
  • svelte.config.js — +8 / -11 (19 changes)
  • vite.config.js — +4 / -4 (8 changes)