From 038eecb57dffc2ed59b39409ef3b6debed88b539 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 20:01:38 +0000 Subject: [PATCH] CI with Node installation --- .gitea/workflows/ci.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 28f6632..62eb45b 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,5 +8,16 @@ jobs: steps: - name: Checkout run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git . - - name: Verify files - run: ls -la + - name: Install Node + run: | + which node npm || (apt-get update && apt-get install -y nodejs npm) + node --version + npm --version + - name: Install Dependencies + run: npm ci + - name: Lint + run: npm run lint + - name: Typecheck + run: npm run typecheck + - name: Test + run: npm test