update CI workflow to include paths for push and pull_request events; revise README for clarity and project overview
This commit is contained in:
@@ -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. 😘"
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user