mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-02 04:56:07 +00:00

* feat: permissible handlers Co-authored-by: MARCROCK22 <MARCROCK22@users.noreply.github.com> * feat: init handle command * feat: unifique interaction/message (not full tested) * fix: await * fix: components handler * fix: console.log * feat: init transformers * fix: xd * fix: check * chore: apply formatting * chore: frozen-lockfile * fix: use pnpm v9 * fix: use pnpm v9 * fix: guildCreate emits when bot has more than 1 shard * feat: update cache adapter * fix: types * fix: limitedAdapter messages and bans support * fix: yes * feat: transformers (huge update) * fix: pnpm * feat: transformers & handleCommand methods * feat(resolveCommandFromContent): for handle content of getCommandFrom Content and argsContent * fix: use raw * fix: consistency * fix: return await * chore: export transformers * fix: socram code * fix: handleCommand & types * fix: events --------- Co-authored-by: MARCROCK22 <MARCROCK22@users.noreply.github.com> Co-authored-by: MARCROCK22 <marcos22dev@gmail.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: douglas546899 <douglas546899@gmail.com> Co-authored-by: Aarón Rafael <69669283+Chewawi@users.noreply.github.com> Co-authored-by: MARCROCK22 <57925328+MARCROCK22@users.noreply.github.com>
34 lines
634 B
YAML
34 lines
634 B
YAML
name: Transpile code
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Transpile code
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: check out code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20.x'
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 9
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build
|
|
run: npx tsc
|