From 8689e0b81c211c92dbbfe72875b671f99a937a77 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Sat, 10 Jan 2026 15:59:56 +0100 Subject: [PATCH] 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