From c3944c4f9830fc579268fbaf3fc91aa6c19e0e05 Mon Sep 17 00:00:00 2001 From: 0715305775 <150877684+0715305775@users.noreply.github.com> Date: Thu, 12 Mar 2026 11:32:15 +0530 Subject: [PATCH 1/2] Update settings.js --- settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.js b/settings.js index 8b5d51cd0c2..192639cc30c 100644 --- a/settings.js +++ b/settings.js @@ -5,7 +5,7 @@ function convertToBool(text, fault = 'true') { } module.exports = { -SESSION_ID: process.env.SESSION_ID === undefined ? 'Your SESSION ID Put' : process.env.SESSION_ID, +SESSION_ID: process.env.SESSION_ID === undefined ? 'π™°πš‚π™Έπšƒπ™·π™°-𝙼𝙳=87f591443831d500' : process.env.SESSION_ID, PORT: process.env.PORT === undefined ? "8000" : process.env.PORT, SESSION_NAME: process.env.PORT === undefined ? "asitha" : process.env.SESSION_NAME, }; From fc9df620b887976d3646440f136c5c6582b7d4cf Mon Sep 17 00:00:00 2001 From: 0715305775 <150877684+0715305775@users.noreply.github.com> Date: Thu, 12 Mar 2026 11:33:50 +0530 Subject: [PATCH 2/2] Create main.yml --- .github/workflows/main.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000000..11b72c1ba30 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,31 @@ +name: Node.js CI/CD Workflow + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [20.x] + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: Install dependencies + run: npm install + + - name: Start application + run: npm start