From 4ccced3b87a0a93bda2d62048f45e4a379da0328 Mon Sep 17 00:00:00 2001 From: Dominik G Date: Fri, 28 Oct 2022 21:25:54 +0200 Subject: [PATCH] feat: run lint and check scripts in svelte repos (#138) --- tests/svelte.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/svelte.ts b/tests/svelte.ts index 9973f46d..4c722581 100755 --- a/tests/svelte.ts +++ b/tests/svelte.ts @@ -9,9 +9,9 @@ export async function test(options: RunOptions) { overrides: { svelte: 'latest' }, - build: 'build:ci', + build: 'build', beforeTest: 'pnpm playwright install chromium', - test: 'test' + test: ['lint','test'] }) await runInRepo({ @@ -24,6 +24,6 @@ export async function test(options: RunOptions) { }, build: 'build', beforeTest: 'pnpm playwright install', - test: 'test' + test: ['lint','check','test'] }) }