Add CI/CD pipeline (Gitea Actions) and fix eslint flat config
- .gitea/workflows/ci.yml: lint, typecheck, build on push/PR - package.json: add typecheck script (tsc --noEmit) - eslint.config.mjs: add .js extensions for flat config module resolution
This commit is contained in:
+2
-1
@@ -21,7 +21,8 @@
|
||||
"build:fix": "npm run build 2>&1 || node scripts/code-repair-agent.mjs --ci",
|
||||
"build": "next build",
|
||||
"start": "next start -p 3006",
|
||||
"lint": "eslint"
|
||||
"lint": "eslint",
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@dnd-kit/core": "^6.3.1",
|
||||
|
||||
Reference in New Issue
Block a user