From 5dc6e1a900912f96d0f0772fa3a84c3df8b9df6d Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 01:41:32 +0000 Subject: [PATCH] fix: resolve CI test failures --- .../.gitea/workflows/ci.yml | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .ai-context-generator-cli/.gitea/workflows/ci.yml diff --git a/.ai-context-generator-cli/.gitea/workflows/ci.yml b/.ai-context-generator-cli/.gitea/workflows/ci.yml new file mode 100644 index 0000000..28ac882 --- /dev/null +++ b/.ai-context-generator-cli/.gitea/workflows/ci.yml @@ -0,0 +1,29 @@ +name: CI + +on: + push: + branches: [main] + paths: + - 'ai-context-generator-cli/**' + pull_request: + branches: [main] + paths: + - 'ai-context-generator-cli/**' + +jobs: + test: + runs-on: ubuntu-latest + defaults: + run: + working-directory: ./ai-context-generator-cli + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' + cache-dependency-path: ai-context-generator-cli/package-lock.json + - run: npm ci + - run: npm run build + - run: npm test + - run: npm run lint