From 6896b9fa0844a7968b74c6a7e22fcccc4a4b2127 Mon Sep 17 00:00:00 2001 From: dominikg Date: Fri, 28 Oct 2022 21:20:35 +0200 Subject: [PATCH] feat: run lint and check scripts in svelte repos --- 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'] }) }