From 3a9ae49db5f09a45369f5655524d07dba318e723 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 08:28:37 +0000 Subject: [PATCH] fix: Add debug steps to CI workflow --- .gitea/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7948863..e019969 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -15,11 +15,19 @@ jobs: node-version: '20' cache: 'npm' + - name: Display Node.js version + run: node --version + + - name: Display npm version + run: npm --version + - name: Install dependencies - run: npm ci + run: npm ci || npm install - name: Build run: npm run build - name: Run tests run: npm test + env: + CI: true