From 7aaeefd85d344390d9e1842e7f76ae96687f1d32 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 20:05:05 +0000 Subject: [PATCH] CI without apt-get --- .gitea/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 62eb45b..ae7314d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,13 +8,12 @@ jobs: steps: - name: Checkout run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git . - - name: Install Node + - name: Check Node run: | - which node npm || (apt-get update && apt-get install -y nodejs npm) - node --version - npm --version + which node && node --version + which npm && npm --version - name: Install Dependencies - run: npm ci + run: npm install - name: Lint run: npm run lint - name: Typecheck