ci: add CI workflow for format, typecheck, and test

Runs on push/PR to main. Also adds skipLibCheck to tsconfig to silence
pre-existing errors in vite/vitest declaration files that don't affect
the Worker build.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Julien Herr
2026-05-21 00:07:25 +02:00
parent 2e9cdd4364
commit 1c8b0ca194
2 changed files with 32 additions and 1 deletions
+2 -1
View File
@@ -11,7 +11,8 @@
"noEmit": true,
"isolatedModules": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]