fix(ci): fix eslint compatibility, downgrade to v8, and fix lint errors
Some checks failed
Build & Deploy / 🔍 Prepare Environment (push) Successful in 8s
Build & Deploy / 🏗️ Build (push) Failing after 12s
Build & Deploy / 🧪 QA (push) Successful in 1m13s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🔔 Notifications (push) Successful in 2s

This commit is contained in:
2026-02-05 11:15:41 +01:00
parent 31f931f7ce
commit 20cafce97d
10 changed files with 262 additions and 262 deletions

View File

@@ -1,7 +1,7 @@
import type { CacheService } from "./cache-service";
export class MemoryCacheService implements CacheService {
private cache = new Map<string, { value: any; expiry: number | null }>();
private cache = new Map<string, { value: unknown; expiry: number | null }>();
async get<T>(key: string): Promise<T | null> {
const item = this.cache.get(key);