From 8689e0b81c211c92dbbfe72875b671f99a937a77 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Sat, 10 Jan 2026 15:59:56 +0100 Subject: [PATCH 1/2] fix: install sqlite3 for build workflow --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e65e6b29b..4eff6e5e7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,5 +23,6 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci + - run: npm install --no-save sqlite3 --force - run: npm run build --if-present - run: npm run test --if-present From 754bef93aa7c3828ca17f2ee59aa65ab93c5796a Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Sat, 10 Jan 2026 16:23:41 +0100 Subject: [PATCH 2/2] fix: add missing config value for tests --- scripts/test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/test.js b/scripts/test.js index 3f944138f..7bef1d344 100644 --- a/scripts/test.js +++ b/scripts/test.js @@ -34,6 +34,7 @@ fs.writeFileSync( api: { endpointPublic: "http://localhost:3001/api/v9/" }, cdn: { endpointPublic: "http://localhost:3001/", endpointPrivate: "http://localhost:3001/" }, gateway: { endpointPublic: "ws://localhost:3001/" }, + general: { serverName: "http://localhost:3001/" }, }), );