Skip to content

Commit 69e7ce5

Browse files
committed
chore(ci): add npm installation step in BuildReferenceDocs
1 parent f680ee8 commit 69e7ce5

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.teamcity/builds/kotlinlang/buidTypes/BuildReferenceDocs.kt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,16 @@ object BuildReferenceDocs : BuildType({
4646
dockerImage = "alpine"
4747
dockerImagePlatform = ScriptBuildStep.ImagePlatform.Linux
4848
}
49-
49+
script {
50+
name = "Prepare page views"
51+
scriptContent = """
52+
#!/usr/bin/env bash
53+
npm i cheerio
54+
""".trimIndent()
55+
dockerImage = "node:22-slim"
56+
dockerImagePlatform = ScriptBuildStep.ImagePlatform.Linux
57+
dockerPull = true
58+
}
5059
script {
5160
name = "Prepare page views"
5261
scriptContent = """

0 commit comments

Comments
 (0)