Skip to content

Commit

Permalink
feat: run lint and check scripts in svelte repos (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikg committed Oct 28, 2022
1 parent 13ca978 commit 4ccced3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/svelte.ts
Expand Up @@ -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({
Expand All @@ -24,6 +24,6 @@ export async function test(options: RunOptions) {
},
build: 'build',
beforeTest: 'pnpm playwright install',
test: 'test'
test: ['lint','check','test']
})
}

0 comments on commit 4ccced3

Please sign in to comment.