File tree Expand file tree Collapse file tree 4 files changed +38
-2
lines changed
Expand file tree Collapse file tree 4 files changed +38
-2
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ pull_request :
4+ push :
5+ branches :
6+ - main
7+
8+ jobs :
9+ type-check :
10+ name : Type Check
11+ runs-on : ubuntu-latest
12+ timeout-minutes : 10
13+ steps :
14+ - uses : actions/checkout@v5
15+ - uses : oven-sh/setup-bun@v2
16+ - run : bun install
17+ - run : bun check
18+ build :
19+ name : Build
20+ runs-on : ubuntu-latest
21+ timeout-minutes : 10
22+ steps :
23+ - uses : actions/checkout@v5
24+ - uses : oven-sh/setup-bun@v2
25+ - run : bun install --frozen-lockfile
26+ - run : bun run build
27+ lint :
28+ name : Lint (Prettier + ESLint)
29+ runs-on : ubuntu-latest
30+ timeout-minutes : 10
31+ steps :
32+ - uses : actions/checkout@v5
33+ - uses : oven-sh/setup-bun@v2
34+ - run : bun install
35+ - run : bun lint
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export default defineConfig(
2525 // typescript-eslint strongly recommend that you do not use the no-undef lint rule on TypeScript projects.
2626 // see: https://typescript-eslint.io/troubleshooting/faqs/eslint/#i-get-errors-from-the-no-undef-rule-about-global-variables-not-being-defined-even-though-there-are-no-typescript-errors
2727 "no-undef" : "off" ,
28+ "no-useless-escape" : "off" ,
2829 } ,
2930 } ,
3031 {
File renamed without changes.
Original file line number Diff line number Diff line change 11{
22 "extends" : " ./.svelte-kit/tsconfig.json" ,
33 "compilerOptions" : {
4- "allowJs" : true ,
5- "checkJs" : true ,
4+ "allowJs" : false ,
5+ "checkJs" : false ,
66 "esModuleInterop" : true ,
77 "forceConsistentCasingInFileNames" : true ,
88 "resolveJsonModule" : true ,
You can’t perform that action at this time.
0 commit comments