Add Gitea Actions workflow: ci.yml
Some checks failed
CI / build (push) Failing after 5s

This commit is contained in:
2026-01-31 12:36:09 +00:00
parent 5a2bea0e19
commit aafd96a669

View File

@@ -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