13 Commits

Author SHA1 Message Date
dependabot[bot]
52cfdc3da1 Bump lodash from 4.17.23 to 4.18.1
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.23 to 4.18.1.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.23...4.18.1)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.18.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-06 02:40:42 +00:00
5e7e86dc1e Merge pull request #8 from gizmo4487/dependabot/npm_and_yarn/js-yaml-4.1.1
Bump js-yaml from 4.1.0 to 4.1.1
2026-04-05 21:39:37 -05:00
3ce173f6a7 Merge branch 'master' into dependabot/npm_and_yarn/js-yaml-4.1.1 2026-04-05 21:36:26 -05:00
48e3420a58 Merge pull request #9 from gizmo4487/dependabot/npm_and_yarn/lodash-4.17.23
Bump lodash from 4.17.21 to 4.17.23
2026-04-05 21:34:29 -05:00
dependabot[bot]
f26d532214 Bump lodash from 4.17.21 to 4.17.23
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-22 00:10:41 +00:00
dependabot[bot]
f9eafc49f1 Bump js-yaml from 4.1.0 to 4.1.1
Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 4.1.0 to 4.1.1.
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/4.1.0...4.1.1)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 4.1.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-15 10:54:09 +00:00
821e73d7b0 Update Twitch username and link 2025-05-24 12:27:26 -05:00
7393b38d1c Add workflow status badge to README 2025-05-17 01:13:15 -05:00
9913eaef8f Workflow: Add npx back to eslint command
All checks were successful
Node.js CI / build (18.x) (push) Successful in 4m34s
Node.js CI / build (20.x) (push) Successful in 3m23s
Node.js CI / build (22.x) (push) Successful in 3m17s
2025-05-16 23:52:51 -05:00
d9f4177011 Run eslint on all .js files 2025-05-16 23:48:25 -05:00
4bba924ed8 Workflow: Run eslint instead of "npm run test" 2025-05-16 23:36:44 -05:00
0ea26f3142 Clean up unused dependencies 2025-05-16 23:28:43 -05:00
c25a722fa0 GitHub Actions Testing 2025-05-16 20:44:31 -05:00
5 changed files with 1986 additions and 5788 deletions

31
.github/workflows/node.js.yml vendored Normal file
View File

@@ -0,0 +1,31 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npx eslint . --ext .js

View File

@@ -1,3 +1,4 @@
[![Node.js CI](https://github.com/gizmo4487/O-Bot/actions/workflows/node.js.yml/badge.svg)](https://github.com/gizmo4487/O-Bot/actions/workflows/node.js.yml)
# O-Bot
A Discord bot themed around O, a character in SEGA's Puyo Puyo Tetris

View File

@@ -25,7 +25,7 @@ module.exports = {
},
{
name: "Twitch",
value: "[notengonombreusario](https://twitch.tv/notengonombreusario)",
value: "[gizmo_4487](https://twitch.tv/gizmo_4487)",
inline: true,
}
)

7725
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -7,22 +7,13 @@
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.18.0",
"@mapbox/node-pre-gyp": "^2.0.0",
"bufferutil": "^4.0.9",
"discord.js": "^14.19.3",
"dotenv": "^16.5.0",
"erlpack": "github:discordapp/erlpack",
"ffmpeg-static": "^5.2.0",
"install-peerdeps": "^3.0.7",
"install-peers": "^1.0.4",
"libsodium-wrappers": "^0.7.15",
"opusscript": "^0.1.1",
"xmlhttprequest": "^1.8.0",
"zlib-sync": "^0.1.10"
"sodium": "^3.0.2"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"eslint": "^9.26.0",
"@eslint/js": "^9.27.0",
"eslint": "^9.27.0",
"globals": "^16.1.0"
}
}