From e170d454e88580edb3d0b56ead2549a8596122c6 Mon Sep 17 00:00:00 2001 From: Neko Ayaka Date: Wed, 26 Aug 2026 20:43:59 +0800 Subject: [PATCH] fix(test): vitest didn't inject local storage caused jsdom required test failure, explicit --no-experimental-webstorage is required --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79e4a12bb..d9175f10b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -152,6 +152,8 @@ jobs: - run: pnpm run build:packages - run: pnpm run test:run + env: + NODE_OPTIONS: --no-experimental-webstorage typecheck: name: Type Check