summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2022-05-15 21:48:32 +0200
committerGitHub <noreply@github.com>2022-05-15 21:48:32 +0200
commite35d7c49856d8fb5965a315976ac6fdd6c9fb718 (patch)
tree1d34c185a02b29f3faa871607cc24eecbf5d2f15 /opendc-web/opendc-web-ui
parent8a772cf16457fb703ad468c3f06b02ca045e5ec4 (diff)
parent3908391fd67da33df2d43c1b01a9e1709dd73c05 (diff)
merge: Build Docker images for build pipeline (#85)
This pull request updates the CI build pipeline to also build the Docker images in order to catch any regressions in the deployment process via Docker. ## Implementation Notes :hammer_and_pick: * Build Docker images for build pipeline * Reduce build steps for Docker image * Ensure Node.js is downloaded ## Breaking API Changes :warning: N/A
Diffstat (limited to 'opendc-web/opendc-web-ui')
-rw-r--r--opendc-web/opendc-web-ui/build.gradle.kts4
1 files changed, 4 insertions, 0 deletions
diff --git a/opendc-web/opendc-web-ui/build.gradle.kts b/opendc-web/opendc-web-ui/build.gradle.kts
index c0e3fcf6..f8c0a45b 100644
--- a/opendc-web/opendc-web-ui/build.gradle.kts
+++ b/opendc-web/opendc-web-ui/build.gradle.kts
@@ -38,6 +38,10 @@ sourceSets {
}
}
+node {
+ download.set(true)
+}
+
val formatTask = tasks.register<NpmTask>("format") {
args.set(listOf("run", "format"))
dependsOn(tasks.npmInstall)