From 36056bb2df18bd6a7397d91441000ae1cb4940ac Mon Sep 17 00:00:00 2001 From: mazatlanbrendon-rgb Date: Wed, 13 Aug 2025 23:21:06 +0200 Subject: [PATCH 1/2] Update config.js --- config.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/config.js b/config.js index 6ed56192..9c5df7e4 100644 --- a/config.js +++ b/config.js @@ -10,23 +10,23 @@ module.exports = { CAPTION: process.env.CAPTION || "*ᴘᴏᴡᴅᴇʀᴇᴅ ʙʏ ᴛᴀʟᴋᴅʀᴏᴠᴇ*", ALWAYS_ONLINE: process.env.ALWAYS_ONLINE || "true", AUTO_READ_STATUS: process.env.AUTO_READ_STATUS || "true", - READ_MESSAGE: process.env.READ_MESSAGE || "false", // Added auto-read configuration + READ_MESSAGE: process.env.READ_MESSAGE || "true", // Added auto-read configuration AUTO_TYPING: process.env.AUTO_TYPING || "true", - CURRENT_STATUS: process.env.CURRENT_STATUS || "false", + CURRENT_STATUS: process.env.CURRENT_STATUS || "true", MODE: process.env.MODE || "public", AUTO_VOICE: process.env.AUTO_VOICE || "false", - AUTO_STICKER: process.env.AUTO_STICKER || "false", - AUTO_REPLY: process.env.AUTO_REPLY || "false", + AUTO_STICKER: process.env.AUTO_STICKER || "true", + AUTO_REPLY: process.env.AUTO_REPLY || "true", ALIVE_IMG: process.env.ALIVE_IMG || "https://i.imgur.com/UfzyhWN.jpeg", ALIVE_MSG: process.env.ALIVE_MSG || "HII DEAR IM ONLINE I'M BYTE-LITE WHATSAPP BOT 😊♻️", ANTI_LINK: process.env.ANTI_LINK || "true", ANTI_BAD: process.env.ANTI_BAD || "true", PREFIX: process.env.PREFIX || ".", - FAKE_RECORDING: process.env.FAKE_RECORDING || "false", + FAKE_RECORDING: process.env.FAKE_RECORDING || "true", AUTO_REACT: process.env.AUTO_REACT || "true", HEART_REACT: process.env.HEART_REACT || "false", - OWNER_REACT: process.env.OWNER_REACT || "false", - BOT_NAME: process.env.BOT_NAME || "ʙʏᴛᴇ-ʟɪᴛᴇ", + OWNER_REACT: process.env.OWNER_REACT || "true", + BOT_NAME: process.env.BOT_NAME || "cjcj", AUTO_STATUS_REPLY: process.env.AUTO_STATUS_REPLY || "true", AUTO_STATUS__MSG: process.env.AUTO_STATUS__MSG || "`𝒚𝒐𝒖𝒓 𝒔𝒕𝒂𝒕𝒖𝒔 𝒔𝒆𝒆𝒏 𝒋𝒖𝒔𝒕 𝒏𝒐𝒘 𝒃𝒚 𝒃𝒚𝒕𝒆-𝒍𝒊𝒕𝒆`", OMDB_API_KEY: process.env.OMDB_API_KEY || "76cb7f39", // omdbapi.com From d9eb54000a21aabc11f8765660d979d32b491d68 Mon Sep 17 00:00:00 2001 From: mazatlanbrendon-rgb Date: Wed, 13 Aug 2025 23:23:35 +0200 Subject: [PATCH 2/2] Create node.js.yml --- .github/workflows/node.js.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/node.js.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 00000000..2284b935 --- /dev/null +++ b/.github/workflows/node.js.yml @@ -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: [ "main" ] + pull_request: + branches: [ "main" ] + +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: npm test