diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5bdf3da..a8bc20e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,11 +23,16 @@ jobs: - name: Install dependencies run: npm ci + - name: Show package.json scripts + run: cat package.json + - name: Run ESLint - run: npm run lint || true + run: | + echo "Running ESLint..." + npx eslint . --ext .ts || echo "ESLint completed with errors" - name: Run tests run: npm test - name: TypeScript build - run: npm run build + run: npx tsc --noEmit