Skip to content

Commit

Permalink
move vitest from npmBuild to check
Browse files Browse the repository at this point in the history
  • Loading branch information
wisskirchenj committed Feb 18, 2024
1 parent 3e1a558 commit d573040
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ tasks.register<NpmTask>("npmBuild") {
inputs.dir("src")
inputs.dir(fileTree("node_modules").exclude(".cache"))
outputs.dir("dist")
dependsOn("eslint", "vitest")
dependsOn("eslint")
}

tasks.register<Zip>("packageFrontend") {
Expand All @@ -69,3 +69,7 @@ artifacts {
tasks.withType<Delete>().named("clean") {
delete("dist")
}

tasks.named("check") {
dependsOn("vitest")
}

0 comments on commit d573040

Please sign in to comment.