File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 4343 - run : pnpm test
4444 env :
4545 CI : true
46+ TestNoAsync :
47+ permissions : {}
48+ runs-on : ubuntu-latest
49+ timeout-minutes : 10
50+ steps :
51+ - uses : actions/checkout@v4
52+ - uses : pnpm/action-setup@v4
53+ - uses : actions/setup-node@v4
54+ with :
55+ node-version : 22
56+ cache : pnpm
57+ - run : pnpm install --frozen-lockfile
58+ - run : pnpm playwright install chromium
59+ - run : pnpm test runtime-runes
60+ env :
61+ CI : true
62+ SVELTE_NO_ASYNC : true
4663 Lint :
4764 permissions : {}
4865 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ if (typeof window !== 'undefined') {
194194
195195export const fragments = /** @type {'html' | 'tree' } */ ( process . env . FRAGMENTS ) ?? 'html' ;
196196
197- export const async_mode = false ; // process.env.SVELTE_NO_ASYNC !== 'true';
197+ export const async_mode = process . env . SVELTE_NO_ASYNC !== 'true' ;
198198
199199/**
200200 * @param {any[] } logs
You can’t perform that action at this time.
0 commit comments