From 05297d8db5ea9bf57633832714a66471623fc39a Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 19:46:36 +0000 Subject: [PATCH] Minimal CI workflow --- .gitea/workflows/ci.yml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 189a26c..2e57539 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -5,19 +5,13 @@ on: [push, pull_request] jobs: test: runs-on: ubuntu-latest + timeout: 10 steps: - name: Checkout run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git ${{ github.workspace }} - - name: Setup Node + - name: Run CI run: | - apt-get update && apt-get install -y nodejs npm - node --version - npm --version - - name: Install - run: npm install - - name: Lint - run: npm run lint - - name: Typecheck - run: npm run typecheck - - name: Test - run: npm test + npm install + npm run lint + npm run typecheck + npm test