update CI workflow to include paths for push and pull_request events; revise README for clarity and project overview

This commit is contained in:
Space-Banane
2026-02-22 15:16:11 +01:00
parent 2ab0b970e4
commit 73c1dde919
2 changed files with 11 additions and 2 deletions

View File

@@ -3,8 +3,16 @@ name: CI
on:
push:
branches: [master, dev]
paths:
- '**/*.json'
- '**/*.ts'
- '**/*.tsx'
pull_request:
branches: [master, dev]
paths:
- '**/*.json'
- '**/*.ts'
- '**/*.tsx'
jobs:
build:
@@ -26,3 +34,4 @@ jobs:
- name: Kiss Goodbye
run: echo "Build and tests passed! Ready to deploy. 😘"

View File

@@ -1,7 +1,7 @@
# SHSF Discord Bot
A modular TypeScript Discord bot for SHSF, designed for clarity, extensibility, and easy maintenance.
Official Discord bot for the SHSF community, built with modularity and extensibility in mind. This bot provides a framework for handling commands, events, startup routines, and web endpoints, allowing for easy addition of new features.
## Features
- **Command Handling:** Add commands in `src/commands/` and register them via `src/handlers/registerCommands.ts`.
- **Event Listeners:** Handle Discord events in `src/listeners/`, grouped by event type.