From 7c74080a2d1ccbeaab0c7a177eed2499cd9f8210 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 08:29:29 +0000 Subject: [PATCH] fix: Simplify CI workflow to isolate issue --- .gitea/workflows/ci.yml | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e019969..445a9a1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,21 +13,11 @@ jobs: - uses: actions/setup-node@v4 with: 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 || npm install - - - name: Build - run: npm run build + - name: Install and build + run: | + npm install + npm run build - name: Run tests run: npm test - env: - CI: true