From 7661f3b395614e8cf46becf4ace248d4396496f9 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 19:39:21 +0000 Subject: [PATCH] Update CI workflow with manual setup --- .gitea/workflows/ci.yml | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4ae4ad5..be46ec2 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,11 +10,25 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: '18' - - run: npm ci - - run: npm run lint - - run: npm run typecheck - - run: npm test + - name: Checkout + run: | + git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git /tmp/repo + cd /tmp/repo + - name: Setup Node + run: | + cd /tmp/repo + curl -fsSL https://deb.nodesource.com/setup_18.x | bash -E - + apt-get install -y nodejs + - name: Install + run: | + cd /tmp/repo + npm ci + - name: Lint + run: npm run lint + working-directory: /tmp/repo + - name: Typecheck + run: npm run typecheck + working-directory: /tmp/repo + - name: Test + run: npm test + working-directory: /tmp/repo