From e1417ad5954a36f78b9931146681d5c26d08a105 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 20:08:29 +0000 Subject: [PATCH] CI with shell script --- .gitea/workflows/ci.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index fb23c1d..e2de88f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -7,12 +7,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git . - - name: Install Dependencies - run: npm install - - name: Lint - run: npm run lint - - name: Typecheck - run: npm run typecheck - - name: Test - run: npm test + run: | + git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git . + - name: Run CI + run: | + bash << 'EOF' + npm install 2>&1 | head -20 + npm run lint + npm run typecheck + npm test + EOF